mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
9 lines
188 B
Go
9 lines
188 B
Go
package billing_webhooks
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrDuplicateWebhook = errors.New("duplicate webhook event")
|
|
ErrUnsupportedEventType = errors.New("unsupported webhook event type")
|
|
)
|