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