TinySkin/config/config.go
2023-09-25 01:04:11 +08:00

33 lines
473 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
HomepageUrl string
RegisterUrl string
ServerName string
Captcha struct {
Type string
SiteKey string
Secret string
}
}