feat: add repo validation

This commit is contained in:
2026-01-20 15:58:10 -08:00
parent 856bde3d97
commit 43c9b7c238
8 changed files with 83 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
use crate::error::Result;
use actix_web::{HttpResponse, web};
use crate::AppState;
pub async fn global_repos(app_state: web::Data<AppState>) -> Result<HttpResponse> {
Ok(HttpResponse::Ok().finish())
}