From 3a8db08cf55b913c78b75c6e38c7da4cc08bff74 Mon Sep 17 00:00:00 2001 From: D Stephenson Date: Tue, 5 May 2026 20:11:53 +0000 Subject: [PATCH] Fix project structure in README --- README.md | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 26b43fc..73cdab6 100644 --- a/README.md +++ b/README.md @@ -77,17 +77,15 @@ edit `parser.py → parse_mgmt_ip_from_interfaces()` ``` lldp-mapper/ -├── mapper/ -│ ├── config.py # Switch IPs + credentials -│ ├── db.py # SQLite operations -│ ├── parser.py # LLDP output parser -│ ├── ssh_client.py # Netmiko SSH + parallel scan -│ ├── scanner.py # Orchestrator -│ └── exports.py # CSV / Mermaid / Graphviz -├── web/ -│ ├── app.py # Flask API + scheduler -│ └── templates/ -│ └── index.html # Cytoscape.js frontend +├── app.py # Flask API + scheduler +├── db.py # SQLite operations +├── parser.py # LLDP output parser +├── ssh_client.py # Netmiko SSH + parallel scan +├── scanner.py # Orchestrator +├── exports.py # CSV / Mermaid / Graphviz +├── config.py # Switch IPs + credentials (not committed) +├── config.py.example # Config template +├── index.html # Cytoscape.js frontend ├── data/ # SQLite DB + exports (created at runtime) ├── Dockerfile ├── docker-compose.yml