gl-signerproxy 0.3.0

Python bindings for the Greenlight client library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;
use gl_signerproxy::Proxy;

#[tokio::main]
async fn main() -> Result<()> {
    env_logger::builder()
        .target(env_logger::Target::Stderr)
        .init();

    Proxy::new().run().await
}