chore: remove volatile project structure from README

This commit is contained in:
Nikketryhard
2026-02-14 02:25:05 -06:00
parent d5e7f09225
commit c57eab4995

View File

@@ -197,32 +197,6 @@ graph LR
C -.->|routed via| E
```
## Project Structure
```
src/
├── main.rs # Entry point, CLI args, lifecycle
├── backend.rs # LS discovery and RPC communication
├── constants.rs # Version detection + stealth constants
├── proto.rs # Hand-rolled protobuf encoder
├── quota.rs # LS quota polling and caching
├── session.rs # Multi-turn session management
├── warmup.rs # Startup warmup (mimics real webview)
├── api/
│ └── mod.rs # Axum API server + route handlers
└── mitm/
├── mod.rs # MITM module root
├── ca.rs # Dynamic CA cert generation
├── proxy.rs # TLS-intercepting proxy server
├── intercept.rs # API response parser (usage extraction)
└── store.rs # Token usage aggregation store
scripts/
├── mitm-wrapper.sh # Install/uninstall MITM wrapper on LS binary
├── standalone-ls.sh # Launch isolated LS instance
└── parse-snapshot.py # HTTP/2 traffic snapshot parser
```
## CLI Flags
```