├── .formatter.exs ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── lib ├── dns_cluster.ex └── dns_cluster │ └── resolver.ex ├── mix.exs ├── mix.lock └── test ├── dns_cluster_test.exs └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/README.md -------------------------------------------------------------------------------- /lib/dns_cluster.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/lib/dns_cluster.ex -------------------------------------------------------------------------------- /lib/dns_cluster/resolver.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/lib/dns_cluster/resolver.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/mix.lock -------------------------------------------------------------------------------- /test/dns_cluster_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/dns_cluster/HEAD/test/dns_cluster_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------