1
0
Fork 0
mirror of synced 2024-09-27 14:51:28 +12:00
budibase/packages/backend-core/src/events/index.ts

12 lines
310 B
TypeScript
Raw Normal View History

export * from "./publishers"
2022-06-01 08:04:41 +12:00
export * as processors from "./processors"
2022-05-24 09:14:44 +12:00
export * as analytics from "./analytics"
2022-05-25 07:01:13 +12:00
export * as identification from "./identification"
2022-06-01 08:04:41 +12:00
export * as backfillCache from "./backfill"
import { processors } from "./processors"
export const shutdown = () => {
processors.shutdown()
}