mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
12 lines
181 B
Go
12 lines
181 B
Go
// +build json
|
|
|
|
package utp
|
|
|
|
import (
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
func init() {
|
|
internet.RegisterAuthenticatorConfig("srtp", func() interface{} { return &Config{} })
|
|
}
|