mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-03 01:26:34 +08:00
12 lines
307 B
Go
12 lines
307 B
Go
package serverconfigs
|
|
|
|
type HTTPCharsetConfig struct {
|
|
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
|
|
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
|
|
Charset string `yaml:"charset" json:"charset"` // 字符集
|
|
}
|
|
|
|
func (this *HTTPCharsetConfig) Init() error {
|
|
return nil
|
|
}
|