Files
EventHubBack/src/handlers/handler_health.erl
2026-04-20 10:28:53 +03:00

7 lines
194 B
Erlang

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