摘要: ```go type Setting struct { path string prefix string set map[string]interface{} } func NewSetting(file string) *Setting{ s := Setting{} s.path = file s.set = make(map[string]interface{}) return &s } 阅读全文
posted @ 2020-03-04 14:37 學海無涯 阅读(173) 评论(0) 推荐(0) 编辑