celp-sdk 0.1.7

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