mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-11 07:11:00 +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
|
|
}
|