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