gl-plugin 0.3.0

Python bindings for the Greenlight client library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    tonic_build::configure()
        .build_client(true)
        .build_server(true)
        .type_attribute(
            "TrampolinePayRequest",
            "#[derive(serde::Serialize, serde::Deserialize)]",
        )
        .compile(
            &[".resources/proto/glclient/greenlight.proto"],
            &[".resources/proto/glclient"],
        )
        .unwrap();
}