Skip to main content

holochain/conductor/
interface.rs

1//! Interfaces are long-running tasks which listen for incoming messages
2//! and dispatch them to the appropriate handlers within Holochain.
3//! They also allow emitting responses and one-way Signals.
4//!
5//! Currently, the only InterfaceDriver is a Websocket-based one, whose
6//! implementation can be found in the `websocket` module here.
7
8pub mod error;
9pub mod websocket;
10
11pub use holochain_conductor_api::config::InterfaceDriver;