elstat/lib/elstat.ex

16 lines
232 B
Elixir
Raw Normal View History

2018-06-10 21:02:34 +00:00
defmodule Elstat do
2018-06-10 21:56:59 +00:00
use Application
require Logger
def start(_type, _args) do
Logger.info "starting app"
Supervisor.start_link(
[
Elstat.Supervisor
],
strategy: :one_for_one
)
2018-06-10 21:02:34 +00:00
end
end