1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 00:06:11 -04:00
v2fly/transport/internet/http/config.go

13 lines
236 B
Go
Raw Normal View History

2018-03-01 07:16:52 -05:00
package http
import (
"v2ray.com/core/common"
"v2ray.com/core/transport/internet"
)
func init() {
common.Must(internet.RegisterProtocolConfigCreator(internet.TransportProtocol_HTTP, func() interface{} {
return new(Config)
}))
}