config.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. Password string `yaml:"password"`
  53. }
  54. type logger struct {
  55. Path string `yaml:"path"`
  56. Name string `yaml:"name"`
  57. Level string `yaml:"level"`
  58. }