first commit

This commit is contained in:
2024-05-08 21:35:26 +08:00
commit 672fc634ef
8 changed files with 604 additions and 0 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
package req
import (
"net/http"
)
type HttpResponse interface {
Get(path ...string) GlobalParams
Send(w http.ResponseWriter, r *http.Request)
}