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-23 23:14:44 +02:00
export * as analytics from "./analytics"
2022-05-24 21:01:13 +02:00
export * as identification from "./identification"
export const shutdown = () => {
processors.shutdown()
}