mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-11 01:50:26 +08:00
15 lines
209 B
Go
15 lines
209 B
Go
|
|
package serverconfigs
|
||
|
|
|
||
|
|
type HTTPProtocolConfig struct {
|
||
|
|
BaseProtocol `yaml:",inline"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *HTTPProtocolConfig) Init() error {
|
||
|
|
err := this.InitBase()
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|