6 lines
189 B
Elixir
6 lines
189 B
Elixir
defmodule HAHandler do
|
|
@moduledoc false
|
|
|
|
def http_port, do: Application.get_env(:ha_handler, :http_port)
|
|
def haproxy_socket, do: Application.get_env(:ha_handler, :haproxy_socket)
|
|
end
|