blob: 6198a1fd661af1d6dcfcbe24f065fe26ea13161a (
plain)
1
2
3
4
5
6
7
|
-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}.
|