Files
mrdeploy/src/main.rs

12 lines
159 B
Rust

mod api;
mod config;
mod controller;
mod database;
mod deploy;
mod mcproxy_client;
#[actix_web::main]
async fn main() {
_ = api::routes::start().await;
}