Initial commit (code only without large binaries)

This commit is contained in:
robin
2026-02-15 18:58:44 +08:00
commit 35df75498f
9442 changed files with 1495866 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package serverconfigs
// HTTPCharsetConfig 字符集设置
type HTTPCharsetConfig struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
Charset string `yaml:"charset" json:"charset"` // 字符集
IsUpper bool `yaml:"isUpper" json:"isUpper"` // 是否要大写
Force bool `yaml:"force" json:"force"` // 是否强制覆盖
// TODO 支持自定义字符集
}
// Init 初始化
func (this *HTTPCharsetConfig) Init() error {
return nil
}