certificates/authority/webhook.go

9 lines
183 B
Go
Raw Normal View History

2022-09-29 19:16:26 -05:00
package authority
import "github.com/smallstep/certificates/webhook"
type webhookController interface {
Enrich(*webhook.RequestBody) error
Authorize(*webhook.RequestBody) error
}