1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-16 00:48:14 -04:00
v2fly/transport/internet/authenticators/utp/utp_json.go
2016-09-19 14:41:54 +02:00

12 lines
180 B
Go

// +build json
package utp
import (
"v2ray.com/core/transport/internet"
)
func init() {
internet.RegisterAuthenticatorConfig("utp", func() interface{} { return &Config{} })
}