argument parsing, skeleton structure, basic project

This commit is contained in:
2026-05-19 20:50:58 +02:00
parent b2a30d7900
commit beb4797119
24 changed files with 1013 additions and 0 deletions

11
agent/Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "p-agent"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "p-agent"
path = "src/main.rs"
[dependencies]
anyhow = "1"

4
agent/src/main.rs Normal file
View File

@@ -0,0 +1,4 @@
fn main() {
println!("p-agent — worker-side agent for p");
println!("(not yet implemented)");
}