1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00
budibase/packages/builder/src/builderStore/index.js

18 lines
478 B
JavaScript
Raw Normal View History

import { getStore } from "./store"
import { getBackendUiStore } from "./store/backend"
import { getAutomationStore } from "./store/automation/"
import analytics from "analytics"
2019-07-13 21:35:57 +12:00
export const store = getStore()
export const backendUiStore = getBackendUiStore()
export const automationStore = getAutomationStore()
2019-07-13 21:35:57 +12:00
export const initialise = async () => {
try {
analytics.activate()
analytics.captureEvent("Builder Started")
} catch (err) {
console.log(err)
}
2020-05-07 21:53:34 +12:00
}