v2ray-core/transport/internet/udp/config.go

13 lines
222 B
Go
Raw Normal View History

2018-09-15 19:33:02 +00: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)
}))
}