13 lines
189 B
Go
Raw Normal View History

2015-12-06 18:21:15 +01:00
package freedom
2016-05-22 22:30:21 +02:00
type DomainStrategy int
const (
DomainStrategyAsIs = DomainStrategy(0)
DomainStrategyUseIP = DomainStrategy(1)
)
type Config struct {
2016-05-22 22:30:21 +02:00
DomainStrategy DomainStrategy
2015-12-06 18:21:15 +01:00
}