elstat/lib/api.ex

16 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