mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +08:00
9 lines
200 B
Go
9 lines
200 B
Go
package configs
|
|
|
|
type WebConfig struct {
|
|
Locations []*LocationConfig `yaml:"locations"` // 路径规则
|
|
|
|
// 本地静态资源配置
|
|
Root string `yaml:"root" json:"root"` // 资源根目录
|
|
}
|