req/response.go
2024-05-08 21:35:26 +08:00

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