Files
rustfs/coordinator/src/lib.rs
T
junxiang Mu 78f3944b5d remote make bucket
Signed-off-by: junxiang Mu <1948535941@qq.com>
2024-08-27 16:43:12 +08:00

5 lines
128 B
Rust

#[async_trait::async_trait]
pub trait Coordinator: Send + Sync {
async fn ping();
async fn create_bucket() -> Result<>
}