一物一码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
1.3 KiB

  1. package cfg
  2. import (
  3. "time"
  4. )
  5. type Config struct {
  6. Debug bool `yaml:"debug"`
  7. Prd bool `yaml:"prd"`
  8. SrvAddr string `yaml:"srv_addr"`
  9. RedisAddr string `yaml:"redis_addr"`
  10. DB DBCfg `yaml:"db"`
  11. Log LogCfg `yaml:"log"`
  12. }
  13. //数据库配置结构体
  14. type DBCfg struct {
  15. Host string `yaml:"host"` //ip及端口
  16. Name string `yaml:"name"` //库名
  17. User string `yaml:"user"` //用户
  18. Psw string `yaml:"psw"` //密码
  19. ShowLog bool `yaml:"show_log"` //是否显示SQL语句
  20. MaxLifetime time.Duration `yaml:"max_lifetime"`
  21. MaxOpenConns int `yaml:"max_open_conns"`
  22. MaxIdleConns int `yaml:"max_idle_conns"`
  23. Path string `yaml:"path"` //日志文件存放路径
  24. }
  25. //日志配置结构体
  26. type LogCfg struct {
  27. AppName string `yaml:"app_name" `
  28. Level string `yaml:"level"`
  29. IsStdOut bool `yaml:"is_stdout"`
  30. TimeFormat string `yaml:"time_format"` // second, milli, nano, standard, iso,
  31. Encoding string `yaml:"encoding"` // console, json
  32. IsFileOut bool `yaml:"is_file_out"`
  33. FileDir string `yaml:"file_dir"`
  34. FileName string `yaml:"file_name"`
  35. FileMaxSize int `yaml:"file_max_size"`
  36. FileMaxAge int `yaml:"file_max_age"`
  37. }