celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
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(())
}