aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index 153d95c..e1363cc 100644
--- a/README.md
+++ b/README.md
@@ -63,10 +63,13 @@ use one of the predefined handlers or write your own. An hello world HTTP
handler could be written like this:
-module(my_handler).
- -export([init/2, handle/2]).
+ -export([init/2, handle/2, terminate/2]).
init(Req, Opts) ->
{ok, Req, undefined}.
handle(Req, State) ->
{reply, 200, [], "Hello World!"}.
+
+ terminate(Req, State) ->
+ ok.