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