const DATASTORE_PROTOBUF_PATH: &str = "./proto/datastore.proto";
#[allow(unused)]
const STORE_PROTOBUF_PATH: &str = "./proto/store.proto";
const PROTOBUF_DIR_PATH: &str = "./proto";
fn main() {
tonic_build::configure()
.out_dir("./src")
.compile_protos(
&[DATASTORE_PROTOBUF_PATH ],
&[PROTOBUF_DIR_PATH],
)
.expect("Protobuf files generation failed");
}