mirror of
https://github.com/cubixle/tuu.git
synced 2026-04-24 21:24:43 +01:00
SAVEPOINT
This commit is contained in:
@@ -3,10 +3,16 @@ package tuu
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"github.com/gobuffalo/buffalo/render"
|
||||
)
|
||||
|
||||
type Context interface {
|
||||
context.Context
|
||||
Response() http.ResponseWriter
|
||||
Request() *http.Request
|
||||
Params() url.Values
|
||||
Param(key string) string
|
||||
Set(key string, value interface{})
|
||||
Render(status int, rr render.Renderer) error
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user