mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-12-26 03:55:26 -05:00
Simpilify configuration files
This commit is contained in:
15
proxy/freedom/config/json/json.go
Normal file
15
proxy/freedom/config/json/json.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package json
|
||||
|
||||
import (
|
||||
"github.com/v2ray/v2ray-core/config"
|
||||
"github.com/v2ray/v2ray-core/config/json"
|
||||
)
|
||||
|
||||
type FreedomConfiguration struct {
|
||||
}
|
||||
|
||||
func init() {
|
||||
json.RegisterConfigType("freedom", config.TypeOutbound, func() interface{} {
|
||||
return &FreedomConfiguration{}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user