8 lines
202 B
JavaScript
8 lines
202 B
JavaScript
|
import { routeStore } from "./routes"
|
||
|
import { screenStore } from "./screens"
|
||
|
|
||
|
export async function initialise() {
|
||
|
await routeStore.actions.fetchRoutes()
|
||
|
await screenStore.actions.fetchScreens()
|
||
|
}
|