static_files/
main.rs

1use ryde::*;
2
3routes!(("/*files", get(get_files)));
4
5embed_static_files!("examples/static_files/static");
6
7#[main]
8async fn main() {
9    serve("localhost:9001", routes()).await
10}