aboutsummaryrefslogtreecommitdiff
path: root/src/api/admin/lib.rs
blob: 31b3874d819c674d12f08ee6bf747e4d0a9a5b3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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>;
}