I'm just starting to learn Rust Axum and I'm wondering how I should structure my project.
Right now, my project is a simple in memory to-do app stolen from a YouTube tutorial, where he defines a router for the specific folder. Structure right now looks like this:
.
├── Cargo.lock
├── Cargo.toml
└── src
├── in_memory
│ ├── mod.rs
│ ├── routes.rs
│ └── state.rs
└── main.rs
I do not feel comfortable with the functions being used for routes all written in the same file, but I'm ok whit it being like that.
If someone knows if I can write a file where then I could import the functionality awesome.
Now my problem is the following:
If I want to make my project bigger and add another section, where should I put all the new code? Am I obliged to use the same file?
I think you want to know if you can split your routes into separate files. If so you can try this.
First create modules. Export your routes for those modules in them and use merge to merge these routes in your main file
route1.rs
routes.rs
main.rs
Merge Routes , Separate Modules into different files