Skip to content

Commit

Permalink
Expose host::api::Connector to users (#864)
Browse files Browse the repository at this point in the history
Since `ApiClient` has a method that requires a `Connector`, we need to
make sure `Connector` is also public. This PR does that, and adds
rudimentary docs for `Connector` (they're pretty minimal as I don't know
any details about it).

Co-authored-by: Frank Laub <flaub@risc0.com>
  • Loading branch information
tzerrell and flaub committed Sep 13, 2023
1 parent e3ff7ff commit 7663b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions risc0/zkvm/src/host/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ impl ConnectionWrapper {
}
}

/// Connects a zkVM client and server
pub trait Connector {
/// Create a client-server connection
fn connect(&self) -> Result<ConnectionWrapper>;
}

Expand Down
1 change: 1 addition & 0 deletions risc0/zkvm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ pub use self::host::server::exec::profiler::Profiler;
#[cfg(feature = "client")]
pub use self::host::{
api::client::Client as ApiClient,
api::Connector,
client::{
env::{ExecutorEnv, ExecutorEnvBuilder},
exec::TraceEvent,
Expand Down

0 comments on commit 7663b8d

Please sign in to comment.