You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package service
import ( "gin-vue-admin/config" "gin-vue-admin/global" "gin-vue-admin/model" "gin-vue-admin/utils" )
// @title GetSystemConfig
// @description 读取配置文件
// @auth (2020/04/05 20:22 )
// @return err error
// @return conf Server
func GetSystemConfig() (err error, conf config.Server) { return nil, global.GVA_CONFIG }
// @title SetSystemConfig
// @description set system config, 设置配置文件
// @auth (2020/04/05 20:22 )
// @return err error
func SetSystemConfig(s model.System) (err error) { cs := utils.StructToMap(s.Config) for k, v := range cs { global.GVA_VP.Set(k, v) } err = global.GVA_VP.WriteConfig() return err }
|