codemp/src/api/mod.rs

11 lines
307 B
Rust
Raw Normal View History

//! # api
//!
//! these traits represent the internal api for the codemp library.
//! more methods and structs are provided but these are the core interfaces to
//! interact with the client.
/// a generic async provider for bidirectional communication
pub mod controller;
pub use controller::Controller;