RUST: Axum app structure

my_axum_app/
├── Cargo.toml
├── src/
│   ├── main.rs
│   ├── api/          # Rust API handlers
│   │   ├── mod.rs    # Module definition
│   │   ├── users.rs  # User-related API functions
│   │   └── items.rs  # Item-related API functions
│   ├── utils/        # Utility functions
│   │   ├── mod.rs
│   │   └── database.rs
│   └── templates/    # HTML templates (if using server-side rendering)
│       └── index.html
├── static/         # Static files (JavaScript, CSS, images)
│   ├── js/
│   │   └── script.js
│   ├── css/
│   │   └── style.css
│   └── images/
│       └── logo.png

"Yeah, well, that's just, like, your opinion, man."