mirror of
https://gitee.com/gokins/gokins.git
synced 2024-12-01 18:58:35 +08:00
18 lines
465 B
Go
18 lines
465 B
Go
package comm
|
|
|
|
type Config struct {
|
|
Server struct {
|
|
Host string `yaml:"host"` //外网访问地址
|
|
LoginKey string `yaml:"loginKey"`
|
|
RunLimit int `yaml:"runLimit"`
|
|
HbtpHost string `yaml:"hbtpHost"`
|
|
Secret string `yaml:"secret"`
|
|
Shells []string `yaml:"shells"`
|
|
DownToken string `yaml:"DownToken"`
|
|
} `yaml:"server"`
|
|
Datasource struct {
|
|
Driver string `yaml:"driver"`
|
|
Url string `yaml:"url"`
|
|
} `yaml:"datasource"`
|
|
}
|