bd-a7e: Bootstrap Rust project and directory structure

This commit is contained in:
teernisse
2026-02-12 12:33:05 -05:00
commit 24739cb270
18 changed files with 8024 additions and 0 deletions

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
#![forbid(unsafe_code)]
use std::process::ExitCode;
#[tokio::main]
async fn main() -> ExitCode {
ExitCode::SUCCESS
}