mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-06 17:36:40 -05:00
13 lines
222 B
Go
13 lines
222 B
Go
|
package udp
|
||
|
|
||
|
import (
|
||
|
"v2ray.com/core/common"
|
||
|
"v2ray.com/core/transport/internet"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
common.Must(internet.RegisterProtocolConfigCreatorByName(protocolName, func() interface{} {
|
||
|
return new(Config)
|
||
|
}))
|
||
|
}
|