• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

main() -> Result<(), Box<dyn std::error::Error>>1 fn main() -> Result<(), Box<dyn std::error::Error>> {
2     tonic_build::configure()
3         .compile(&["proto/helloworld.proto"], &["proto"])
4         .expect("Failed to compile proto specification");
5     Ok(())
6 }
7