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