阶段性提交

This commit is contained in:
GoEdgeLab
2020-08-21 12:32:16 +08:00
parent e6266b7dc3
commit 8f22f2fda1
181 changed files with 4897 additions and 218 deletions

View File

@@ -0,0 +1,10 @@
package serverconfigs
type WebConfig struct {
IsOn bool `yaml:"isOn" json:"isOn"`
Locations []*LocationConfig `yaml:"locations" json:"locations"` // 路径规则 TODO
// 本地静态资源配置
Root string `yaml:"root" json:"root"` // 资源根目录 TODO
}