├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── defaults.go ├── defaults_test.go ├── development.go ├── dnsdisco.gif ├── dnsdisco.go ├── dnsdisco_test.go ├── doc.go ├── example_load_balancer_test.go ├── random.go └── random_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/README.md -------------------------------------------------------------------------------- /defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/defaults.go -------------------------------------------------------------------------------- /defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/defaults_test.go -------------------------------------------------------------------------------- /development.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/development.go -------------------------------------------------------------------------------- /dnsdisco.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/dnsdisco.gif -------------------------------------------------------------------------------- /dnsdisco.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/dnsdisco.go -------------------------------------------------------------------------------- /dnsdisco_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/dnsdisco_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/doc.go -------------------------------------------------------------------------------- /example_load_balancer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/example_load_balancer_test.go -------------------------------------------------------------------------------- /random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/random.go -------------------------------------------------------------------------------- /random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaeljusto/dnsdisco/HEAD/random_test.go --------------------------------------------------------------------------------