1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/pkg/engine/apicall/client.go

11 lines
180 B
Go
Raw Normal View History

package apicall
import (
"context"
"io"
)
type ClientInterface interface {
RawAbsPath(ctx context.Context, path string, method string, dataReader io.Reader) ([]byte, error)
}