1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-25 05:44:16 -04:00
v2fly/app/router/testing/config.go
2015-12-07 22:47:47 +01:00

15 lines
252 B
Go

package testing
type RouterConfig struct {
StrategyValue string
SettingsValue interface{}
}
func (this *RouterConfig) Strategy() string {
return this.StrategyValue
}
func (this *RouterConfig) Settings() interface{} {
return this.SettingsValue
}