1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 16:26:02 -04:00
v2fly/transport/internet/udp/config.go

13 lines
248 B
Go
Raw Normal View History

2018-09-15 15:33:02 -04:00
package udp
import (
2021-02-16 15:31:50 -05:00
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/transport/internet"
2018-09-15 15:33:02 -04:00
)
func init() {
2019-01-06 14:33:58 -05:00
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
2018-09-15 15:33:02 -04:00
return new(Config)
}))
}