Files
capsule/pkg/webhook/webhook.go
2021-06-03 19:46:20 +02:00

11 lines
178 B
Go

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