aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/rest_hello_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/handlers/rest_hello_h.erl')
-rw-r--r--test/handlers/rest_hello_h.erl16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/handlers/rest_hello_h.erl b/test/handlers/rest_hello_h.erl
new file mode 100644
index 0000000..a40d6ac
--- /dev/null
+++ b/test/handlers/rest_hello_h.erl
@@ -0,0 +1,16 @@
+%% This module sends a hello world response via a REST handler.
+
+-module(rest_hello_h).
+
+-export([init/2]).
+-export([content_types_provided/2]).
+-export([get_text_plain/2]).
+
+init(Req, Opts) ->
+ {cowboy_rest, Req, Opts}.
+
+content_types_provided(Req, State) ->
+ {[{{<<"text">>, <<"plain">>, []}, get_text_plain}], Req, State}.
+
+get_text_plain(Req, State) ->
+ {<<"This is REST!">>, Req, State}.