mirror of
https://github.com/hexedtech/codemp.git
synced 2025-03-21 18:51:32 +01:00
11 lines
307 B
Rust
11 lines
307 B
Rust
|
//! # 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;
|