# Axum Static Include
Embed files of fold in binary and create router.
## Example
```rust
#[axum_static_include::static_serve("assert")]
fn assert_fold() -> axum::Router {}
#[tokio::main]
async fn main() {
let asserts = assert_fold();
let app = Router::new()
.nest("/static", asserts)
// ...
}
```