astro-run-protocol 0.1.0

AstroRun is a highly customizable workflow orchestrator that allows users to define their own core runners. Whether it's Docker or other platforms, AstroRun empowers users to run workflows with ease and flexibility.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
  tonic_build::configure()
    .out_dir("src/pb")
    .compile(
      &[
        "proto/astro_run_server.proto",
        "proto/astro_run_remote_runner.proto",
      ],
      &["proto"],
    )
    .unwrap();

  // println!("cargo:rerun-if-changed=proto/astro_run_server.proto");
}