config.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package config
  2. import (
  3. "gopkg.in/yaml.v2"
  4. "os"
  5. "sync"
  6. )
  7. var (
  8. instance *config
  9. once sync.Once
  10. )
  11. func init() {
  12. once.Do(func() {
  13. var conf config
  14. path, _ := os.Getwd()
  15. filePath := path + "/config/config.yaml"
  16. if f, err := os.Open(filePath); err != nil {
  17. panic(err)
  18. } else {
  19. err := yaml.NewDecoder(f).Decode(&conf)
  20. if err != nil {
  21. panic(err)
  22. }
  23. }
  24. instance = &conf
  25. })
  26. }
  27. //获取配置文档实例
  28. func Instance() *config {
  29. return instance
  30. }
  31. type config struct {
  32. Server server `yaml:"server"`
  33. Database database `yaml:"database"`
  34. Redis redis `yaml:"redis"`
  35. Logger logger `yaml:"logger"`
  36. }
  37. type server struct {
  38. Address string `yaml:"address"`
  39. CodeEnabled bool `yaml:"code_enabled"`
  40. TokenSign string `yaml:"token_sign"`
  41. }
  42. type database struct {
  43. Host string `yaml:"host"`
  44. User string `yaml:"user"`
  45. Password string `yaml:"password"`
  46. Port string `yaml:"port"`
  47. Name string `yaml:"name"`
  48. Timezone string `yaml:"timezone"`
  49. }
  50. type redis struct {
  51. Host string `yaml:"host"`
  52. User string `yaml:"user"`
  53. Password string `yaml:"password"`
  54. }
  55. type logger struct {
  56. Path string
  57. Level string
  58. Stdout bool
  59. }