contracts/response.go
2023-04-12 16:56:55 +08:00

11 lines
155 B
Go

package contracts
import (
"net/http"
)
type HttpResponse interface {
Get(path ...string) GlobalParams
Send(w http.ResponseWriter, r *http.Request)
}