admin api: create structs for all requests/responess in src/api/admin/api.rs

This commit is contained in:
Alex Auvolat
2025-01-27 23:13:01 +01:00
parent 5560a963e0
commit c1eb1610ba
6 changed files with 721 additions and 455 deletions
+16
View File
@@ -1,8 +1,24 @@
pub mod api_server;
mod error;
pub mod api;
mod router_v0;
mod router_v1;
mod bucket;
mod cluster;
mod key;
use std::sync::Arc;
use async_trait::async_trait;
use serde::Serialize;
use garage_model::garage::Garage;
#[async_trait]
pub trait EndpointHandler {
type Response: Serialize;
async fn handle(self, garage: &Arc<Garage>) -> Result<Self::Response, error::Error>;
}