1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-09-29 05:34:08 -04:00
Files
v2fly/proxy/freedom/json/json.go

16 lines
324 B
Go
Raw Normal View History

2015-10-06 23:11:08 +02:00
package json
import (
"github.com/v2ray/v2ray-core/proxy/internal/config"
"github.com/v2ray/v2ray-core/proxy/internal/config/json"
2015-10-06 23:11:08 +02:00
)
type FreedomConfiguration struct {
}
func init() {
config.RegisterOutboundConnectionConfig("freedom", json.JsonConfigLoader(func() interface{} {
2015-10-06 23:11:08 +02:00
return &FreedomConfiguration{}
}))
2015-10-06 23:11:08 +02:00
}