1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-14 12:30:39 +00:00

Add more methods to Configer

This commit is contained in:
Ming Deng
2020-08-19 22:08:29 +08:00
parent cead72c6df
commit 2c16c7b917
9 changed files with 208 additions and 10 deletions

View File

@ -118,6 +118,7 @@ func parseYML(buf []byte) (cnf map[string]interface{}, err error) {
// ConfigContainer is a config which represents the yaml configuration.
type ConfigContainer struct {
config.BaseConfiger
data map[string]interface{}
sync.RWMutex
}