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