config.go 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package config
  2. import (
  3. "gopkg.in/yaml.v3"
  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. filePath := "./config/config.yaml"
  15. if f, err := os.Open(filePath); err != nil {
  16. panic(err)
  17. } else {
  18. err := yaml.NewDecoder(f).Decode(&conf)
  19. if err != nil {
  20. panic(err)
  21. }
  22. }
  23. instance = &conf
  24. })
  25. }
  26. // 获取配置文档实例
  27. func Instance() *config {
  28. return instance
  29. }
  30. type config struct {
  31. Logger logger `yaml:"logger"`
  32. Mqtt mqtt `yaml:"mqtt"`
  33. Device device `yaml:"device"`
  34. }
  35. type logger struct {
  36. Path string `yaml:"path"`
  37. Name string `yaml:"name"`
  38. Level string `yaml:"level"`
  39. }
  40. type mqtt struct {
  41. Server string `yaml:"server"`
  42. Id string `yaml:"id"`
  43. User string `yaml:"user"`
  44. Password string `yaml:"password"`
  45. }
  46. type device struct {
  47. Informant string `yaml:"informant"`
  48. SpeechSpeed string `yaml:"speech_speed"`
  49. SpeechVolume string `yaml:"speech_volume"`
  50. }