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