Files
EdgeCommon/pkg/serverconfigs/http_location_ref.go

8 lines
309 B
Go
Raw Normal View History

2020-09-21 19:52:10 +08:00
package serverconfigs
type HTTPLocationRef struct {
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
LocationId int64 `yaml:"locationId" json:"locationId"` // 路径ID
Children []*HTTPLocationRef `yaml:"children" json:"children"` // 子路径规则
}