This commit is contained in:
Oliver Atkinson
2024-05-08 09:46:06 -06:00
commit ed85756bfc
7 changed files with 24 additions and 0 deletions

1
server/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

6
server/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]

3
server/src/main.rs Normal file
View File

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