holochain 0.7.0-dev.22

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

pub mod error;
pub mod websocket;

pub use holochain_conductor_api::config::InterfaceDriver;