unin-bin 0.1.3

A universal installer for many languages so you don't have to remember any commands
Documentation
1
2
3
4
5
use std::sync::mpsc::{Receiver, Sender, channel};

pub fn unin_channel() -> (Sender<&'static str>, Receiver<&'static str>) {
    channel()
}