mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
9 lines
183 B
Go
9 lines
183 B
Go
package authority
|
|
|
|
import "github.com/smallstep/certificates/webhook"
|
|
|
|
type webhookController interface {
|
|
Enrich(*webhook.RequestBody) error
|
|
Authorize(*webhook.RequestBody) error
|
|
}
|