config.go 191 B

123456789101112131415
  1. package config
  2. type Db struct {
  3. Type string
  4. Host string
  5. Port uint16
  6. Username string
  7. Password string
  8. Encode string
  9. }
  10. type Config struct {
  11. Addr string
  12. Database Db
  13. }