1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-07 18:57:44 -05:00
v2fly/transport/internet/authenticators/utp/utp_json.go

12 lines
180 B
Go
Raw Normal View History

2016-08-25 07:25:59 -04:00
// +build json
package utp
import (
"v2ray.com/core/transport/internet"
)
func init() {
2016-09-19 08:41:54 -04:00
internet.RegisterAuthenticatorConfig("utp", func() interface{} { return &Config{} })
2016-08-25 07:25:59 -04:00
}