mirror of
https://github.com/optim-enterprises-bv/Xray-core.git
synced 2025-11-02 19:47:46 +00:00
13 lines
238 B
Go
13 lines
238 B
Go
package udp
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
)
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
return new(Config)
|
|
}))
|
|
}
|