Files
ghostv2/api/src/main.rs
2026-01-14 19:08:06 -08:00

12 lines
218 B
Rust

use actix_web::{App, HttpServer};
struct AppState {}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| App::new())
.bind(("127.0.0.1", 8080))?
.run()
.await
}