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