]> luflow.net public git repositories - flow-web.git/blob - src/main.rs
Initial commit.
[flow-web.git] / src / main.rs
1 // luflow.net web site
2 // AGPL-3.0 License (see LICENSE)
3
4 mod site;
5
6 use crate::site::generate_site;
7
8 #[tokio::main]
9 async fn main() {
10 // generate all site related files:
11 generate_site().await;
12 }