15 lines
210 B
Rust
15 lines
210 B
Rust
|
#![feature(lazy_cell)]
|
||
|
|
||
|
pub mod engines;
|
||
|
pub mod normalize;
|
||
|
pub mod parse;
|
||
|
pub mod web;
|
||
|
|
||
|
#[tokio::main]
|
||
|
async fn main() {
|
||
|
// initialize tracing
|
||
|
tracing_subscriber::fmt::init();
|
||
|
|
||
|
web::run().await;
|
||
|
}
|