实现HTTP部分功能

This commit is contained in:
刘祥超
2020-09-26 08:07:24 +08:00
parent cc4f30a6f4
commit 60f656012f
52 changed files with 1120 additions and 391 deletions

View File

@@ -5,3 +5,7 @@ type HTTPCharsetConfig struct {
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
Charset string `yaml:"charset" json:"charset"` // 字符集
}
func (this *HTTPCharsetConfig) Init() error {
return nil
}