v2ray-core/proxy/freedom/json/json.go

15 lines
244 B
Go
Raw Normal View History

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