Initial commit

This commit is contained in:
Kayashov.SM
2025-03-12 17:54:16 +04:00
commit b6d8a3cebd
254 changed files with 29963 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
class AuthClient {
async signOut() {
localStorage.removeItem("token");
return {};
}
}
export const authClient = new AuthClient();