From 86cb105679ff80214bfc9d979afa27b1eb747307 Mon Sep 17 00:00:00 2001 From: Herman Singh Date: Fri, 7 Sep 2018 13:48:43 -0400 Subject: Rename handler modules to _h --- examples/upload/src/upload_h.erl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/upload/src/upload_h.erl (limited to 'examples/upload/src/upload_h.erl') diff --git a/examples/upload/src/upload_h.erl b/examples/upload/src/upload_h.erl new file mode 100644 index 0000000..45db8e1 --- /dev/null +++ b/examples/upload/src/upload_h.erl @@ -0,0 +1,15 @@ +%% Feel free to use, reuse and abuse the code in this file. + +%% @doc Upload handler. +-module(upload_h). + +-export([init/2]). + +init(Req, Opts) -> + {ok, Headers, Req2} = cowboy_req:read_part(Req), + {ok, Data, Req3} = cowboy_req:read_part_body(Req2), + {file, <<"inputfile">>, Filename, ContentType} + = cow_multipart:form_data(Headers), + io:format("Received file ~p of content-type ~p as follow:~n~p~n~n", + [Filename, ContentType, Data]), + {ok, Req3, Opts}. -- cgit v1.2.3