8 lines
119 B
Go
8 lines
119 B
Go
package contracts
|
|
|
|
import "net/http"
|
|
|
|
type MCPService interface {
|
|
ServeHTTP(w http.ResponseWriter, r *http.Request)
|
|
}
|