jvmvm-api 0.1.0

The API for the JVMVM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}