From 1c3e5116419bd11445aaca9b2bdccdb41b11f052 Mon Sep 17 00:00:00 2001 From: icyleaf Date: Fri, 7 Dec 2018 14:34:58 +0800 Subject: [PATCH] add http handler snippet --- snippets/crystal.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/snippets/crystal.json b/snippets/crystal.json index 63a869a..c882785 100644 --- a/snippets/crystal.json +++ b/snippets/crystal.json @@ -24,6 +24,19 @@ ], "description": "HTTP Server example with error, logs and static handler." }, + "HTTP handler": { + "prefix": "http handler", + "body": [ + "class ${1:HTTPHandler}", + "\tinclude HTTP::Handler", + "", + "\tdef call(context)", + "\t\t$0", + "\tend", + "end" + ], + "description": "HTTP Handler example." + }, "Exception block": { "prefix": "begin", "body": [