10 lines
144 B
Go
10 lines
144 B
Go
package contracts
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Service interface {
|
|
Execute(*http.Request) any
|
|
ServeHTTP(http.ResponseWriter, *http.Request)
|
|
} |