1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00
v2fly/proxy/freedom/config/json/json.go

15 lines
244 B
Go
Raw Normal View History

2015-10-06 17:11:08 -04:00
package json
import (
2015-10-30 17:42:24 -04:00
"github.com/v2ray/v2ray-core/proxy/common/config/json"
2015-10-06 17:11:08 -04:00
)
type FreedomConfiguration struct {
}
func init() {
2015-10-30 17:42:24 -04:00
json.RegisterOutboundConnectionConfig("freedom", func() interface{} {
2015-10-06 17:11:08 -04:00
return &FreedomConfiguration{}
})
}