gin-vue-admin/server/model/system/sys_system.go

11 lines
171 B
Go
Raw Normal View History

2021-07-16 12:08:11 +00:00
package system
2020-04-04 13:39:07 +00:00
import (
"github.com/flipped-aurora/gin-vue-admin/server/config"
2020-04-04 13:39:07 +00:00
)
// 配置文件结构体
2020-04-04 13:39:07 +00:00
type System struct {
Config config.Server `json:"config"`
2020-05-19 14:08:45 +00:00
}