TinySkin/config/config.go
2023-10-01 21:31:56 +08:00

32 lines
450 B
Go

package config
type Config struct {
OfflineUUID bool
Port string
Log struct {
Level string
Json bool
}
Sql struct {
MysqlDsn string
}
Debug bool
Cache struct {
Type string
Ram int
}
RaelIP bool
MaxIpUser int
RsaPriKey string
TexturePath string
TextureBaseUrl string
WebBaseUrl string
ServerName string
Captcha struct {
Type string
SiteKey string
Secret string
}
}