aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hello_world/src/toppage_handler.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-07-13 10:15:22 +0200
committerLoïc Hoguin <[email protected]>2012-07-13 10:15:22 +0200
commitb8a25b156cb0eb9a99ba4d204cf973e197d7b563 (patch)
tree898389b646fb091b8e0cf7798349e481ba406857 /examples/hello_world/src/toppage_handler.erl
parent0c2e2224e372f01e6cf51a8e12d4856edb4cb8ac (diff)
downloadcowboy-b8a25b156cb0eb9a99ba4d204cf973e197d7b563.tar.gz
cowboy-b8a25b156cb0eb9a99ba4d204cf973e197d7b563.tar.bz2
cowboy-b8a25b156cb0eb9a99ba4d204cf973e197d7b563.zip
Add an Hello World example
Diffstat (limited to 'examples/hello_world/src/toppage_handler.erl')
-rw-r--r--examples/hello_world/src/toppage_handler.erl18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/hello_world/src/toppage_handler.erl b/examples/hello_world/src/toppage_handler.erl
new file mode 100644
index 0000000..ba9159d
--- /dev/null
+++ b/examples/hello_world/src/toppage_handler.erl
@@ -0,0 +1,18 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+%% @doc Hello world handler.
+-module(toppage_handler).
+
+-export([init/3]).
+-export([handle/2]).
+-export([terminate/2]).
+
+init(_Transport, Req, []) ->
+ {ok, Req, undefined}.
+
+handle(Req, State) ->
+ {ok, Req2} = cowboy_http_req:reply(200, [], <<"Hello world!">>, Req),
+ {ok, Req2, State}.
+
+terminate(_Req, _State) ->
+ ok.