use anyhow::Result; use protobuf_codegen::Codegen; fn main() -> Result<()> { Codegen::new() .protoc() .include(".") .input("jwebmail.proto") .out_dir("src/pb3") .run() }