22 lines
270 B
Go
22 lines
270 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
|
|
}
|