1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-18 17:54:30 -04:00
v2fly/transport/internet/hysteria2/hysteria2.go
2024-09-08 08:38:05 +01:00

19 lines
369 B
Go

package hysteria2
import (
"github.com/v2fly/v2ray-core/v5/common"
"github.com/v2fly/v2ray-core/v5/transport/internet"
)
//go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
const (
protocolName = "hysteria2"
)
func init() {
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
return new(Config)
}))
}