tinychannels 0.1.0

Pluggable channel and messaging primitives for OpenHuman harness communication.
Documentation
1
2
3
4
5
6
7
8
9
//! Portable channel provider implementations.

pub mod signal;
pub mod slack;
pub mod whatsapp;

pub use signal::SignalChannel;
pub use slack::SlackChannel;
pub use whatsapp::WhatsAppChannel;