1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 18:37:05 +00:00

Add ParamInt64 as requested on chat from the community

This commit is contained in:
Makis Maropoulos
2016-06-26 08:46:04 +03:00
parent 132021ec43
commit abccf7fc06
2 changed files with 7 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ type (
IContext interface {
Param(string) string
ParamInt(string) (int, error)
ParamInt64(string) (int64, error)
URLParam(string) string
URLParamInt(string) (int, error)
URLParamInt64(string) (int64, error)