Merge branch 'main' into next-v2

This commit is contained in:
Alex Auvolat
2025-02-01 19:07:17 +01:00
77 changed files with 869 additions and 840 deletions
+35
View File
@@ -0,0 +1,35 @@
#[macro_use]
extern crate tracing;
pub mod api_server;
mod error;
mod macros;
pub mod api;
mod router_v0;
mod router_v1;
mod router_v2;
mod bucket;
mod cluster;
mod key;
mod special;
use std::sync::Arc;
use async_trait::async_trait;
use garage_model::garage::Garage;
pub enum Authorization {
None,
MetricsToken,
AdminToken,
}
#[async_trait]
pub trait EndpointHandler {
type Response;
async fn handle(self, garage: &Arc<Garage>) -> Result<Self::Response, error::Error>;
}