feat: add repos page

This commit is contained in:
2026-01-14 19:08:06 -08:00
parent 5a2bec37b9
commit 92d409f812
14 changed files with 2833 additions and 26 deletions

11
api/src/main.rs Normal file
View 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
}