Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
pycanis committed Sep 10, 2024
1 parent 673af83 commit 88ee395
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@ pub mod peersrpc {
tonic::include_proto!("peersrpc");
}

pub mod routerrpc {
tonic::include_proto!("routerrpc");
}

/// Supplies requests with macaroon
#[derive(Clone)]
pub struct MacaroonInterceptor {
Expand Down Expand Up @@ -277,7 +281,10 @@ where
conn.clone(),
interceptor.clone(),
),
signer: signrpc::signer_client::SignerClient::with_interceptor(conn, interceptor),
signer: signrpc::signer_client::SignerClient::with_interceptor(
conn.clone(),
interceptor.clone(),
),
router: routerrpc::router_client::RouterClient::with_interceptor(conn, interceptor),
};
Ok(client)
Expand Down

0 comments on commit 88ee395

Please sign in to comment.