fn main()->Result<(),Box>{ // Compiling protos using path on build time tonic_build::configure() .build_server(false) .compile( &["protos/connector.proto"], &["protos"], )?; Ok(()) }