gl-signerproxy 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
15
16
17
18
mod hsmproxy;
mod passfd;
mod pb;
mod wire;

use anyhow::Result;

pub struct Proxy {}

impl Proxy {
    pub fn new() -> Proxy {
        Proxy {}
    }

    pub async fn run(&self) -> Result<()> {
        hsmproxy::run().await
    }
}