mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 10:18:34 +00:00
13 lines
234 B
Go
13 lines
234 B
Go
package authority
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/smallstep/certificates/webhook"
|
|
)
|
|
|
|
type webhookController interface {
|
|
Enrich(context.Context, *webhook.RequestBody) error
|
|
Authorize(context.Context, *webhook.RequestBody) error
|
|
}
|