This commit is contained in:
Teo
2025-09-09 09:40:08 +08:00
parent 910b24019e
commit 4cd7efcfe4
34 changed files with 1898 additions and 71 deletions

View File

@ -10,6 +10,10 @@ export const setToken = (access_token: string) => (tokenStorage.value = access_t
export const removeToken = () => (tokenStorage.value = null);
export const getGoToken = () => {
return getLocal('goToken');
};
export const getDockSocketUrl = () => {
return getLocal('dockSocketUrl');
};