feat: add initial synchronous channel implementation

This commit is contained in:
Callum Leslie 2025-09-02 21:46:40 +01:00
parent b5a659f8a7
commit 2de73e10b1
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
2 changed files with 183 additions and 0 deletions

View file

@ -1,8 +1,10 @@
#![doc = include_str!("../README.md")]
pub mod channel;
pub mod error;
pub mod types;
// Re-exports
pub use channel::{Sourcer, SuckPair, Sucker};
pub use error::Error;
pub use types::ValueSource;