Add new subcommand list

Also add it to the readme and manpage.
This commit is contained in:
finga 2021-07-07 18:27:41 +02:00
parent 12b117db7e
commit 4020f062ef
5 changed files with 90 additions and 6 deletions

View file

@ -1,11 +1,13 @@
mod create;
mod info;
mod list;
mod recv;
mod send;
mod unlink;
pub use create::Create;
pub use info::Info;
pub use list::List;
pub use recv::Recv;
pub use send::Send;
pub use unlink::Unlink;