mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2026-01-06 12:05:48 +08:00
16 lines
403 B
Go
16 lines
403 B
Go
|
|
package serverconfigs
|
||
|
|
|
||
|
|
type ServerNameType = string
|
||
|
|
|
||
|
|
const (
|
||
|
|
ServerNameTypeFull = "full" // 完整的域名,包含通配符等
|
||
|
|
ServerNameTypePrefix = "prefix" // 前缀
|
||
|
|
ServerNameTypeSuffix = "suffix" // 后缀
|
||
|
|
ServerNameTypeMatch = "match" // 正则匹配
|
||
|
|
)
|
||
|
|
|
||
|
|
type ServerNameConfig struct {
|
||
|
|
Name string `yaml:"name" json:"name"` // 名称
|
||
|
|
Type string `yaml:"type" json:"type"` // 类型
|
||
|
|
}
|