package SinoGnssMySQL import "goInOut/config" type ConfigFile struct { config.Consumer IoConfig ioConfig `json:"ioConfig"` OtherInfo map[string]string `json:"info"` } type ioConfig struct { In In `json:"in"` Out OUT `json:"out"` } type In struct { Db config.DbConfig `json:"db"` } type OUT struct { Mqtt config.MqttConfig `json:"mqtt"` }