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

9 lines
222 B
TypeScript
Raw Normal View History

import { processors } from "./processors"
export * from "./publishers"
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"
export const shutdown = () => {
processors.shutdown()
}