VRC status checking

This commit is contained in:
Natsumi
2025-10-02 14:13:16 +13:00
parent f4d4754230
commit cac7bf6f17
10 changed files with 118 additions and 22 deletions
+5 -2
View File
@@ -31,6 +31,7 @@ import { useVrStore } from './vr';
import { useVrcxStore } from './vrcx';
import { useVRCXUpdaterStore } from './vrcxUpdater';
import { useWorldStore } from './world';
import { useVrcStatusStore } from './vrcStatus';
import { createSentryPiniaPlugin } from '@sentry/vue';
@@ -70,7 +71,8 @@ export function createGlobalStores() {
vrcx: useVrcxStore(),
sharedFeed: useSharedFeedStore(),
updateLoop: useUpdateLoopStore(),
auth: useAuthStore()
auth: useAuthStore(),
vrcStatus: useVrcStatusStore()
};
}
@@ -106,5 +108,6 @@ export {
useVRCXUpdaterStore,
useWorldStore,
useSharedFeedStore,
useUpdateLoopStore
useUpdateLoopStore,
useVrcStatusStore
};