remote make bucket

Signed-off-by: junxiang Mu <1948535941@qq.com>
This commit is contained in:
junxiang Mu
2024-08-27 16:43:12 +08:00
parent 0a373bc260
commit 78f3944b5d
15 changed files with 206 additions and 27 deletions
+15
View File
@@ -0,0 +1,15 @@
[package]
name = "e2e_test"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flatbuffers.workspace = true
protos.workspace = true
tonic = { version = "0.12.1", features = ["gzip"] }
tokio = { workspace = true }
+5
View File
@@ -0,0 +1,5 @@
#[async_trait::async_trait]
pub trait Coordinator: Send + Sync {
async fn ping();
async fn create_bucket() -> Result<>
}