1 2 3 4 5 6 7 8 9
fn main() -> Result<(), Box<dyn std::error::Error>> { tonic_build::configure() .build_server(true) .compile( &["proto/wechaty/puppet.proto"], &["proto/wechaty"], )?; Ok(()) }