contracts/server.go

11 lines
144 B
Go
Raw Normal View History

2023-04-24 15:02:51 +08:00
package contracts
import (
"net/http"
)
type Server interface {
Execute(*http.Request) any
ServeHTTP(http.ResponseWriter, *http.Request)
}