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