use crate::router::Router;
mod router;
#[tokio::main]
async fn main() {
let router = Router::new();
router.serve().await;
}