14 lines
171 B
Go
14 lines
171 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
// Context for api handlers
|
||
|
type Context struct {
|
||
|
context.Context
|
||
|
Request *http.Request
|
||
|
Response http.ResponseWriter
|
||
|
}
|