13 lines
216 B
Go
Raw Normal View History

2018-09-15 21:33:02 +02:00
package udp
import (
"v2ray.com/core/common"
"v2ray.com/core/transport/internet"
)
func init() {
2019-01-06 20:33:58 +01:00
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
2018-09-15 21:33:02 +02:00
return new(Config)
}))
}