Fix project structure in README

This commit is contained in:
2026-05-05 20:11:53 +00:00
parent d32ca80a22
commit 3a8db08cf5
+9 -11
View File
@@ -77,17 +77,15 @@ edit `parser.py → parse_mgmt_ip_from_interfaces()`
``` ```
lldp-mapper/ lldp-mapper/
├── mapper/ ├── app.py # Flask API + scheduler
│ ├── config.py # Switch IPs + credentials ├── db.py # SQLite operations
│ ├── db.py # SQLite operations ├── parser.py # LLDP output parser
│ ├── parser.py # LLDP output parser ├── ssh_client.py # Netmiko SSH + parallel scan
├── ssh_client.py # Netmiko SSH + parallel scan ├── scanner.py # Orchestrator
│ ├── scanner.py # Orchestrator ├── exports.py # CSV / Mermaid / Graphviz
│ └── exports.py # CSV / Mermaid / Graphviz ├── config.py # Switch IPs + credentials (not committed)
├── web/ ├── config.py.example # Config template
│ ├── app.py # Flask API + scheduler ├── index.html # Cytoscape.js frontend
│ └── templates/
│ └── index.html # Cytoscape.js frontend
├── data/ # SQLite DB + exports (created at runtime) ├── data/ # SQLite DB + exports (created at runtime)
├── Dockerfile ├── Dockerfile
├── docker-compose.yml ├── docker-compose.yml