Remove a message queue

This commit is contained in:
finga 2021-06-14 03:27:24 +02:00
parent fdacba1eec
commit fe877b230c
3 changed files with 26 additions and 1 deletions

View file

@ -3,6 +3,7 @@ use clap::Clap;
mod cli;
mod create;
mod unlink;
use cli::{Command, Opts};
@ -11,6 +12,7 @@ fn main() -> Result<()> {
match opts.command {
Command::Create(c) => c.run(opts.verbose)?,
Command::Unlink(u) => u.run(opts.verbose)?,
}
Ok(())