mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-10 01:20:26 +08:00
8 lines
246 B
Go
8 lines
246 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"` // 字符集
|
||
|
|
}
|