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

2518
api/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

8
api/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "api"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web = "4.12.1"
reqwest = "0.13.1"

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
}