lark-websocket-protobuf 0.1.0

Lark/Feishu websocket client protobuf definitions.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io::Result;

fn main() -> Result<()> {
prost_build::compile_protos(
        &["protos/pbbp2.proto"],
        &["protos/"],
    )?;

    Ok(())
}