8 lines
139 B
Rust

use website::run_server;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
run_server().await?;
Ok(())
}