1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 12:31:58 +00:00

Update to 4.5.0

This commit is contained in:
Gerasimos Maropoulos
2016-10-09 21:09:53 +03:00
parent 14982891c5
commit f66b7e2eab
9 changed files with 167 additions and 113 deletions

View File

@@ -1,7 +1,3 @@
/*
Context.go Implements: ./context/context.go
*/
package iris
import (
@@ -24,7 +20,6 @@ import (
"github.com/kataras/go-errors"
"github.com/kataras/go-fs"
"github.com/kataras/go-sessions"
"github.com/kataras/iris/context"
"github.com/kataras/iris/utils"
"github.com/valyala/fasthttp"
)
@@ -109,8 +104,6 @@ type (
}
)
var _ context.IContext = &Context{}
// GetRequestCtx returns the current fasthttp context
func (ctx *Context) GetRequestCtx() *fasthttp.RequestCtx {
return ctx.RequestCtx