chore: initialise server Cargo project

This commit is contained in:
Muhammad Nauman Raza 2025-02-18 15:25:40 +00:00
parent 5214d53c54
commit 27f4c392a0
Signed by untrusted user: devraza
GPG key ID: 91EAD6081011574B
2 changed files with 9 additions and 0 deletions

6
server/Cargo.toml Normal file
View file

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

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

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