1
0
Fork 0
mirror of synced 2024-09-27 14:51:28 +12:00
budibase/packages/backend-core/src/events/index.ts
2022-05-31 21:04:41 +01:00

11 lines
310 B
TypeScript

export * from "./publishers"
export * as processors from "./processors"
export * as analytics from "./analytics"
export * as identification from "./identification"
export * as backfillCache from "./backfill"
import { processors } from "./processors"
export const shutdown = () => {
processors.shutdown()
}