use std::error::Error; fn main() -> Result<(), Box> { tonic_build::configure() .compile( &["hailstorm.proto"], &["proto"], )?; Ok(()) }