13 lines
222 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() {
common.Must(internet.RegisterProtocolConfigCreatorByName(protocolName, func() interface{} {
return new(Config)
}))
}