certificates/authority/webhook.go
2022-09-29 19:16:26 -05:00

8 lines
183 B
Go

package authority
import "github.com/smallstep/certificates/webhook"
type webhookController interface {
Enrich(*webhook.RequestBody) error
Authorize(*webhook.RequestBody) error
}