You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smallstep-certificates/authority/webhook.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
}