mqrs/src/sysv.rs
finga 4c82d41f8e Implement printing a list of SysV IPC mqs
What could be improved is when printing the information to use a
better human readable format.

As usual the readme and the man page are both updated.
2021-07-08 14:46:10 +02:00

8 lines
103 B
Rust

mod create;
mod list;
mod unlink;
pub use create::Create;
pub use list::List;
pub use unlink::Unlink;