mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 08:32:48 +00:00
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
import { AppStore } from './app.store';
|
|
|
|
export class RootStore {
|
|
public appStore = new AppStore();
|
|
}
|
|
|
|
export const rootStoreInstance = new RootStore();
|