liuhaijun 3f5f28d785 add sheduling agent
Change-Id: I89f35fb3984044c57f10727432755012542f9fd8
2023-11-16 10:55:57 +00:00

14 lines
426 B
Go

package config
type MinioConfig struct {
Endpoint string `ini:"endpoint" yaml:"endpoint"`
AccessKey string `ini:"access_key" yaml:"access_key" mapstructure:"access_key"`
SecretAccessKey string `ini:"secret_access_key" yaml:"secret_access_key" mapstructure:"secret_access_key"`
}
var Minio = MinioConfig{
Endpoint: "192.168.12.78:208670",
AccessKey: "xxxxxxxx",
SecretAccessKey: "yyyyyyyy",
}