Skip to main content

unin_bin/
comms.rs

1use std::sync::mpsc::{Receiver, Sender, channel};
2
3pub fn unin_channel() -> (Sender<&'static str>, Receiver<&'static str>) {
4    channel()
5}