Add initial rust configs

This commit is contained in:
Radical 2025-04-28 20:41:33 +02:00
parent 566002cda1
commit e98f9517fb
2 changed files with 13 additions and 0 deletions

5
src/main.rs Normal file
View file

@ -0,0 +1,5 @@
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("Hello, world!");
Ok(())
}