first commit

This commit is contained in:
2023-04-12 16:56:55 +08:00
commit e82ca51b08
53 changed files with 2762 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package contracts
import (
"net/http"
)
type Service interface {
Execute(*http.Request) any
ServeHTTP(http.ResponseWriter, *http.Request)
}