From 80f1c50c57662c1bd6677bf7b22e2428bf26143d Mon Sep 17 00:00:00 2001
From: Sayali Ingale <110274872+Sayu25@users.noreply.github.com>
Date: Sat, 30 Mar 2024 23:22:24 +0530
Subject: [PATCH] Create README.md
Added a project structure in README.md file
---
README.md | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
create mode 100644 README.md
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..fbf72b68
--- /dev/null
+++ b/README.md
@@ -0,0 +1,34 @@
+# Project Structure
+
+project-root/
+├── src/
+│ ├── app/
+│ │ ├── components/
+│ │ │ └── ... # Other components
+│ │ ├── services/
+│ │ │ └── ... # Other services
+│ │ └── ...
+│ │
+│ ├── assets/
+│ │ └── ... # Static assets like images, styles, etc.
+│ │
+│ ├── environments/
+│ │ ├── environment.ts
+│ │ ├── environment.prod.ts
+│ │ └── ...
+│ │
+│ └── sl-auth-library/
+│ ├── src/
+│ │ ├── lib/
+│ │ │ ├── components/
+│ │ │ │ └── ... # Authentication components
+│ │ │ ├── services/
+│ │ │ │ └── ... # Authentication services
+│ │ │ └── ...
+│ │ ├── public_api.ts # Exported components and services
+│ │ └── ...
+│ └── ...
+│
+├── angular.json
+├── package.json
+└── ...