Add new subcommand list
Also add it to the readme and manpage.
This commit is contained in:
parent
12b117db7e
commit
4020f062ef
5 changed files with 90 additions and 6 deletions
|
@ -7,6 +7,7 @@ mod posix;
|
|||
enum Command {
|
||||
Create(posix::Create),
|
||||
Info(posix::Info),
|
||||
List(posix::List),
|
||||
Unlink(posix::Unlink),
|
||||
Send(posix::Send),
|
||||
Recv(posix::Recv),
|
||||
|
@ -47,6 +48,7 @@ fn main() -> Result<()> {
|
|||
Command::Unlink(u) => u.run()?,
|
||||
Command::Send(s) => s.run()?,
|
||||
Command::Recv(r) => r.run()?,
|
||||
Command::List(l) => l.run()?,
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue