mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
15 lines
241 B
Go
15 lines
241 B
Go
|
// +build json
|
||
|
|
||
|
package freedom
|
||
|
|
||
|
import (
|
||
|
"github.com/v2ray/v2ray-core/proxy/internal/config"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
config.RegisterOutboundConnectionConfig("freedom",
|
||
|
func(data []byte) (interface{}, error) {
|
||
|
return new(Config), nil
|
||
|
})
|
||
|
}
|