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