feat: added command parsing and spawning

This commit is contained in:
Andrew Rioux
2023-04-28 17:19:09 -04:00
parent e0c7e1c240
commit 9e893dbce9
13 changed files with 528 additions and 68 deletions

View File

@@ -0,0 +1,8 @@
[package]
name = "client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}