use crate::routes::routes;
mod handlers;
mod models;
mod routes;
mod schema;
mod sql;
#[tokio::main]
async fn main() {
let routes = routes();
println!("Server started at http://127.0.0.1:8000");
warp::serve(routes).run(([127, 0, 0, 1], 8000)).await;
}