mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
15 lines
244 B
Go
15 lines
244 B
Go
package json
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/proxy/common/config/json"
|
|
)
|
|
|
|
type FreedomConfiguration struct {
|
|
}
|
|
|
|
func init() {
|
|
json.RegisterOutboundConnectionConfig("freedom", func() interface{} {
|
|
return &FreedomConfiguration{}
|
|
})
|
|
}
|