TinySkin/config/config.go
2023-09-05 01:38:25 +08:00

21 lines
251 B
Go

package config
type Config struct {
OfflineUUID bool
Port string
Log struct {
Level string
Json bool
}
Sql struct {
MysqlDsn string
}
Debug bool
JwtKey string
Cache struct {
Type string
Ram int
}
RaelIP bool
}