mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
14 lines
275 B
Go
14 lines
275 B
Go
package reaction
|
|
|
|
import (
|
|
"github.com/pocketbase/pocketbase/core"
|
|
|
|
"github.com/SecurityBrewery/catalyst/reaction/trigger/hook"
|
|
"github.com/SecurityBrewery/catalyst/reaction/trigger/webhook"
|
|
)
|
|
|
|
func BindHooks(app core.App) {
|
|
hook.BindHooks(app)
|
|
webhook.BindHooks(app)
|
|
}
|