Files
capsule/pkg/webhook/webhook.go
2023-10-16 21:29:23 +02:00

10 lines
175 B
Go

// Copyright 2020-2023 Project Capsule Authors.
// SPDX-License-Identifier: Apache-2.0
package webhook
type Webhook interface {
GetPath() string
GetHandlers() []Handler
}