From 1b27f5c011f48169d24e7d7750b1c162afa483be Mon Sep 17 00:00:00 2001 From: sdogruyol Date: Mon, 24 Oct 2016 16:12:29 +0300 Subject: [PATCH] Add Int64 type to context store --- src/kemal/context.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kemal/context.cr b/src/kemal/context.cr index 8d5aa85..0afce4e 100644 --- a/src/kemal/context.cr +++ b/src/kemal/context.cr @@ -4,7 +4,7 @@ # Instances of this class are passed to an `HTTP::Server` handler. class HTTP::Server class Context - alias StoreTypes = Nil | String | Int32 | Float64 | Bool + alias StoreTypes = Nil | String | Int32 | Int64 | Float64 | Bool getter store = {} of String => StoreTypes def params