initial commit for client+libs

This commit is contained in:
Robert Schauklies 2025-01-11 16:14:30 +01:00
parent 49ba2eb018
commit b1f432ef3f
8 changed files with 167 additions and 0 deletions

1
beamer/client/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
target

8
beamer/client/Cargo.toml Normal file
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!");
}