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";