rust router skeleton code

Just a basic axum setup with modules
This commit is contained in:
Julia Lange 2025-04-17 16:08:14 -07:00
parent 1f6544a75e
commit 1d577ef396
Signed by: Julia
SSH key fingerprint: SHA256:50XUMcOFYPUs9/1j7p9SPnwASZ7QnxXm7THF7HkbqzQ
4 changed files with 653 additions and 0 deletions

8
rust/src/main.rs Normal file
View file

@ -0,0 +1,8 @@
use crate::router::setup;
mod router;
#[tokio::main]
async fn main() {
setup().await;
}