mirror of
https://github.com/makeplane/plane.git
synced 2026-05-02 05:59:36 -05:00
944b873184
* chore: move all services inside the apps folder * chore: rename apiserver to server
14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
// store
|
|
import { CoreRootStore } from "@/store/root.store";
|
|
import { ITimelineStore, TimeLineStore } from "./timeline";
|
|
|
|
export class RootStore extends CoreRootStore {
|
|
timelineStore: ITimelineStore;
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this.timelineStore = new TimeLineStore(this);
|
|
}
|
|
}
|