dbb420f79e
Co-authored-by: AlteredCoder Co-authored-by: erenJag
20 lines
527 B
Go
20 lines
527 B
Go
package csconfig
|
|
|
|
import log "github.com/sirupsen/logrus"
|
|
|
|
type DatabaseCfg struct {
|
|
User string `yaml:"user"`
|
|
Password string `yaml:"password"`
|
|
DbName string `yaml:"db_name"`
|
|
Host string `yaml:"host"`
|
|
Port int `yaml:"port"`
|
|
DbPath string `yaml:"db_path"`
|
|
Type string `yaml:"type"`
|
|
Flush *FlushDBCfg `yaml:"flush"`
|
|
LogLevel *log.Level `yaml:"log_level"`
|
|
}
|
|
|
|
type FlushDBCfg struct {
|
|
MaxItems *int `yaml:"max_items"`
|
|
MaxAge *string `yaml:"max_age"`
|
|
}
|