rust router skeleton code
Just a basic axum setup with modules
This commit is contained in:
parent
1f6544a75e
commit
1d577ef396
4 changed files with 653 additions and 0 deletions
8
rust/src/main.rs
Normal file
8
rust/src/main.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
use crate::router::setup;
|
||||
|
||||
mod router;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() {
|
||||
setup().await;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue