2022-05-23 11:29:33 +02:00
|
|
|
export * from "./publishers"
|
2022-05-31 22:04:41 +02:00
|
|
|
export * as processors from "./processors"
|
2022-05-23 23:14:44 +02:00
|
|
|
export * as analytics from "./analytics"
|
2023-01-11 10:37:37 +01:00
|
|
|
export { default as identification } from "./identification"
|
2022-05-31 22:04:41 +02:00
|
|
|
export * as backfillCache from "./backfill"
|
|
|
|
|
|
|
|
import { processors } from "./processors"
|
2022-05-10 11:33:59 +02:00
|
|
|
|
|
|
|
export const shutdown = () => {
|
|
|
|
processors.shutdown()
|
2022-08-25 20:41:47 +02:00
|
|
|
console.log("Events shutdown")
|
2022-05-10 11:33:59 +02:00
|
|
|
}
|