config.go 956 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. Logger logger `yaml:"logger"`
  35. }
  36. type server struct {
  37. Address string `yaml:address"`
  38. }
  39. type database struct {
  40. Host string `yaml:"host"`
  41. User string `yaml:"user"`
  42. Password string `yaml:"password"`
  43. Port string `yaml:"port"`
  44. Name string `yaml:"name"`
  45. Timezone string `yaml:"timezone"`
  46. }
  47. type logger struct {
  48. Path string
  49. Level string
  50. Stdout bool
  51. }