SAVEPOINT

This commit is contained in:
luke.rodham
2017-11-10 10:52:11 +00:00
parent a189881568
commit 59301c7622
12 changed files with 455 additions and 7 deletions

View File

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