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