aboutsummaryrefslogtreecommitdiff
path: root/server/src/jchat_http_download.erl
blob: af3610705ba7fab81206577fc51c5440d9e2079e (plain)
1
2
3
4
5
6
7
-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}.