mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 02:04:09 +00:00
17 lines
286 B
Go
17 lines
286 B
Go
package config
|
|
|
|
var ExtConfig Extend
|
|
|
|
// Extend 扩展配置
|
|
// extend:
|
|
// demo:
|
|
// name: demo-name
|
|
// 使用方法: config.ExtConfig......即可!!
|
|
type Extend struct {
|
|
// Demo Demo // 这里配置对应配置文件的结构即可
|
|
}
|
|
|
|
type Demo struct {
|
|
Name string
|
|
}
|