-module(handler_health). -export([init/2]). init(Req, _Opts) -> Body = jsx:encode(#{status => <<"ok">>}), cowboy_req:reply(200, #{<<"content-type">> => <<"application/json">>}, Body, Req).