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