From c41f02f505290e6704cab48f8dab85a12b82e5f4 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Tue, 24 Mar 2026 19:29:37 +0300 Subject: [PATCH] chore: export modules --- src/features/auth/api/calls/index.ts | 2 +- src/features/auth/model/index.ts | 5 ++++- src/features/auth/model/stores/index.ts | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 src/features/auth/model/stores/index.ts diff --git a/src/features/auth/api/calls/index.ts b/src/features/auth/api/calls/index.ts index 3673624..dd68271 100644 --- a/src/features/auth/api/calls/index.ts +++ b/src/features/auth/api/calls/index.ts @@ -1,4 +1,4 @@ export * from "./login"; export * from "./register"; export * from "./logout"; -export * from "../../../../shared/api/calls/refresh"; +export * from "./mocks"; diff --git a/src/features/auth/model/index.ts b/src/features/auth/model/index.ts index 4e97778..c3082d2 100644 --- a/src/features/auth/model/index.ts +++ b/src/features/auth/model/index.ts @@ -3,4 +3,7 @@ export * from "./types/service"; export * from "./types/store"; // Stores -export * from "./stores/authStore/authStore"; +export * from "./stores"; + +// Selectors +export * from "./selectors"; diff --git a/src/features/auth/model/stores/index.ts b/src/features/auth/model/stores/index.ts new file mode 100644 index 0000000..9df9c1c --- /dev/null +++ b/src/features/auth/model/stores/index.ts @@ -0,0 +1 @@ +export { useAuthStore } from "./authStore/authStore";