phab-grpc 0.0.1

Phab GRPC server to serve phabricator tasks content.
Documentation
1
2
3
4
5
6
7
use tonic_build;

fn main() -> Result<(), Box<dyn std::error::Error>> {
  tonic_build::compile_protos("proto/app.proto").unwrap();

  return Ok(());
}