Files
capsule/pkg/webhook/webhook.go
2021-06-27 22:36:55 +02:00

10 lines
163 B
Go

// Copyright 2020-2021 Clastix Labs
// SPDX-License-Identifier: Apache-2.0
package webhook
type Webhook interface {
GetPath() string
GetHandlers() []Handler
}