mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
33 lines
601 B
Go
33 lines
601 B
Go
package serverconfigs
|
|
|
|
import "encoding/json"
|
|
|
|
func NewHTTPProtocolConfigFromJSON(configJSON []byte) (*HTTPProtocolConfig, error) {
|
|
config := &HTTPProtocolConfig{}
|
|
if len(configJSON) > 0 {
|
|
err := json.Unmarshal(configJSON, config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return config, nil
|
|
}
|
|
|
|
type HTTPProtocolConfig struct {
|
|
BaseProtocol `yaml:",inline"`
|
|
}
|
|
|
|
func (this *HTTPProtocolConfig) Init() error {
|
|
err := this.InitBase()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// AsJSON 转换为JSON
|
|
func (this *HTTPProtocolConfig) AsJSON() ([]byte, error) {
|
|
return json.Marshal(this)
|
|
}
|