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/
├── 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