elstat/lib/api.ex
2018-06-11 19:42:21 -03:00

15 lines
275 B
Elixir

defmodule Elstat.API.Status do
require Logger
def init(req0, state) do
data = Elstat.Manager.get_current_state()
req = :cowboy_req.reply(200,
%{"content-type" => "text/json"},
Poison.encode!(data),
req0
)
{:ok, req, state}
end
end