mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 15:36:41 -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{}
|
|
})
|
|
}
|