1 2 3 4 5 6 7 8 9 10 11 12 13 14
use std::io::Result; fn main() -> Result<()> { prost_build::compile_protos( &[ /* Any protobuf files go here */ "protobuf/celp_system_event.proto", "protobuf/celp_system_event_app_info.proto", ], &["protobuf/"], )?; Ok(()) }