mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 18:57:44 -05:00
12 lines
180 B
Go
12 lines
180 B
Go
// +build json
|
|
|
|
package utp
|
|
|
|
import (
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
func init() {
|
|
internet.RegisterAuthenticatorConfig("utp", func() interface{} { return &Config{} })
|
|
}
|