feat: add repos page
This commit is contained in:
11
api/src/main.rs
Normal file
11
api/src/main.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user