From 701dc981d2b75def333ca1a07ea03428fc220c5b Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Tue, 17 Mar 2026 10:02:25 +0300 Subject: [PATCH] chore: add export/input shortcuts --- src/features/auth/api/index.ts | 2 ++ src/features/auth/model/index.ts | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 src/features/auth/api/index.ts diff --git a/src/features/auth/api/index.ts b/src/features/auth/api/index.ts new file mode 100644 index 0000000..d9949f4 --- /dev/null +++ b/src/features/auth/api/index.ts @@ -0,0 +1,2 @@ +export * from "./config"; +export * from "./calls"; diff --git a/src/features/auth/model/index.ts b/src/features/auth/model/index.ts index 2bc5cbf..4e97778 100644 --- a/src/features/auth/model/index.ts +++ b/src/features/auth/model/index.ts @@ -1,2 +1,6 @@ +// Types export * from "./types/service"; export * from "./types/store"; + +// Stores +export * from "./stores/authStore/authStore";