11 lines
149 B
Go
11 lines
149 B
Go
|
package req
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type HttpResponse interface {
|
||
|
Get(path ...string) GlobalParams
|
||
|
Send(w http.ResponseWriter, r *http.Request)
|
||
|
}
|