req/response.go

11 lines
149 B
Go
Raw Permalink Normal View History

2024-05-08 21:35:26 +08:00
package req
import (
"net/http"
)
type HttpResponse interface {
Get(path ...string) GlobalParams
Send(w http.ResponseWriter, r *http.Request)
}