gl_signerproxy/
lib.rs

1mod hsmproxy;
2mod passfd;
3mod pb;
4mod wire;
5
6use anyhow::Result;
7
8pub struct Proxy {}
9
10impl Proxy {
11    pub fn new() -> Proxy {
12        Proxy {}
13    }
14
15    pub async fn run(&self) -> Result<()> {
16        hsmproxy::run().await
17    }
18}