22 lines
266 B
Go
22 lines
266 B
Go
package config
|
|
|
|
type Config struct {
|
|
OfflineUUID bool
|
|
Port string
|
|
Log struct {
|
|
Level string
|
|
Json bool
|
|
}
|
|
Sql struct {
|
|
MysqlDsn string
|
|
}
|
|
Node int64
|
|
Epoch int64
|
|
Debug bool
|
|
JwtKey string
|
|
Cache struct {
|
|
Type string
|
|
Ram int
|
|
}
|
|
}
|