blob: 376798794252359c9e1ffaf66bb8c75feaba31d8 (
plain)
1
2
3
4
5
6
7
|
-module(jchat_http_eventsource).
-export([init/2]).
init(Req0, State) ->
% TODO: Implement Server-Sent Events for push notifications
Req1 = cowboy_req:reply(501, #{}, <<"EventSource not implemented">>, Req0),
{ok, Req1, State}.
|