fix: add involves edge from task to agent:nomos at creation
Plus sync vendor directory for Docker build compatibility.
This commit is contained in:
16
vendor/github.com/oapi-codegen/runtime/strictmiddleware/nethttp/main.go
generated
vendored
Normal file
16
vendor/github.com/oapi-codegen/runtime/strictmiddleware/nethttp/main.go
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
package nethttp
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type StrictHTTPHandlerFunc func(ctx context.Context, w http.ResponseWriter, r *http.Request, request interface{}) (response interface{}, err error)
|
||||
|
||||
type StrictHTTPMiddlewareFunc func(f StrictHTTPHandlerFunc, operationID string) StrictHTTPHandlerFunc
|
||||
|
||||
// Deprecated: Use StrictHTTPHandlerFunc instead.
|
||||
type StrictHttpHandlerFunc func(ctx context.Context, w http.ResponseWriter, r *http.Request, request interface{}) (response interface{}, err error)
|
||||
|
||||
// Deprecated: Use StrictHTTPMiddlewareFunc instead.
|
||||
type StrictHttpMiddlewareFunc func(f StrictHttpHandlerFunc, operationID string) StrictHttpHandlerFunc
|
||||
Reference in New Issue
Block a user