add list
This commit is contained in:
parent
db4f7f9369
commit
37e89d6dc5
3 changed files with 26 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
pub struct Command(String);
|
||||
|
||||
mod say;
|
||||
mod list;
|
||||
|
||||
impl Command {
|
||||
pub fn raw(cmd: &str) -> Self {
|
||||
|
|
@ -14,4 +15,8 @@ impl Command {
|
|||
pub fn say() -> say::SayCommand {
|
||||
say::SayCommand::default()
|
||||
}
|
||||
|
||||
pub fn list() -> list::ListCommand {
|
||||
list::ListCommand::default()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue