aboutsummaryrefslogtreecommitdiff
path: root/src/guff/handlers/not-found-handler.cr
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2016-03-08 16:59:30 -0500
committerPaul Duncan <pabs@pablotron.org>2016-03-08 16:59:30 -0500
commitb5d66c8d5ce941a6ee290128807f1f9e50aee4e9 (patch)
tree8e65a5f082f41f66a9b2b7f7821a884a6a9cdc6a /src/guff/handlers/not-found-handler.cr
parent575e4c49131e7699fc23fca78ec14b400680839a (diff)
downloadold-guff-b5d66c8d5ce941a6ee290128807f1f9e50aee4e9.tar.bz2
old-guff-b5d66c8d5ce941a6ee290128807f1f9e50aee4e9.zip
mv src/guff/*-handler.cr src/guff/handler/
Diffstat (limited to 'src/guff/handlers/not-found-handler.cr')
-rw-r--r--src/guff/handlers/not-found-handler.cr10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/guff/handlers/not-found-handler.cr b/src/guff/handlers/not-found-handler.cr
new file mode 100644
index 0000000..b15b1dc
--- /dev/null
+++ b/src/guff/handlers/not-found-handler.cr
@@ -0,0 +1,10 @@
+require "./handler"
+
+module Guff
+ class NotFoundHandler < Handler
+ def call(context : HTTP::Server::Context)
+ context.response.status_code = 404
+ context.response.puts "not found"
+ end
+ end
+end