diff options
| author | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 10:14:03 -0400 |
|---|---|---|
| committer | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 10:14:03 -0400 |
| commit | 5dbc46f3c1c75bf922bcc1c3df342323c23c04ce (patch) | |
| tree | 1a2840366e5d39aa3d9e8d868dd5893f5c488373 /AGENTS.md | |
| parent | 764d3e67fc783c487f42d398d1b85a5a1f0d8ef0 (diff) | |
docs: update README and AGENTS.md to reflect embedded launcher architecture
Diffstat (limited to 'AGENTS.md')
| -rw-r--r-- | AGENTS.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,11 +10,14 @@ The project follows a modern Go project structure to ensure scalability and a cl ```text . +├── Makefile # Handles the C-to-Go embedding build chain ├── cmd/ │ └── wg-wrap/ # CLI Entry point. Handles flag parsing and subcommand routing. ├── internal/ +│ ├── cli/ # Command line interface and bootstrap orchestration. │ ├── config/ # Application-wide configuration types. │ ├── namespace/ # Linux namespace management (unshare, setns, pinning). +│ │ └── launcher_src/ # C source for the rootless bootstrap helper. │ └── wireguard/ # Userspace WireGuard controller and TUN device binding. ├── pkg/ │ └── wgconf/ # WireGuard .conf parsing logic. Reusable library. |
