12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package config
- import (
- "gopkg.in/yaml.v3"
- "os"
- "sync"
- )
- var (
- instance *config
- once sync.Once
- )
- func init() {
- once.Do(func() {
- var conf config
- filePath := "./config/config.yaml"
- if f, err := os.Open(filePath); err != nil {
- panic(err)
- } else {
- err := yaml.NewDecoder(f).Decode(&conf)
- if err != nil {
- panic(err)
- }
- }
- instance = &conf
- })
- }
- // 获取配置文档实例
- func Instance() *config {
- return instance
- }
- type config struct {
- Logger logger `yaml:"logger"`
- Mqtt mqtt `yaml:"mqtt"`
- Device device `yaml:"device"`
- }
- type logger struct {
- Path string `yaml:"path"`
- Name string `yaml:"name"`
- Level string `yaml:"level"`
- }
- type mqtt struct {
- Server string `yaml:"server"`
- Id string `yaml:"id"`
- User string `yaml:"user"`
- Password string `yaml:"password"`
- }
- type device struct {
- Informant string `yaml:"informant"`
- SpeechSpeed string `yaml:"speech_speed"`
- SpeechVolume string `yaml:"speech_volume"`
- }
|