lyrs/src/main.rs

18 lines
235 B
Rust
Raw Normal View History

2024-05-14 14:30:03 -05:00
mod cli;
2024-05-17 13:55:16 -05:00
mod db;
2024-05-14 12:28:27 -05:00
mod file_watcher;
mod observe;
2024-05-14 14:30:03 -05:00
mod prelude;
mod router;
2024-05-14 12:28:27 -05:00
mod state;
mod static_files;
mod tailwind;
2024-05-14 14:30:03 -05:00
mod webserver;
2024-05-06 13:05:04 -05:00
2024-05-17 12:00:37 -05:00
use crate::prelude::*;
2024-05-06 15:39:21 -05:00
#[tokio::main]
2024-05-15 16:48:23 -05:00
async fn main() -> AnonResult<()> {
2024-05-17 13:55:16 -05:00
Ok(cli::run().await?)
2024-05-07 21:13:46 -05:00
}