-module(jchat_http_upload). -export([init/2]). init(Req0, State) -> % TODO: Implement file upload Req1 = cowboy_req:reply(501, #{}, <<"Upload not implemented">>, Req0), {ok, Req1, State}.