Add Int64 type to context store

This commit is contained in:
sdogruyol 2016-10-24 16:12:29 +03:00
parent a794c3dae2
commit 1b27f5c011
1 changed files with 1 additions and 1 deletions

View File

@ -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