diff options
| author | R0flcopt3r <12752060+R0flcopt3r@users.noreply.github.com> | 2021-06-05 22:42:56 +0200 |
|---|---|---|
| committer | R0flcopt3r <12752060+R0flcopt3r@users.noreply.github.com> | 2021-06-05 23:12:56 +0200 |
| commit | 48deaf177633e062582b7733f633a37b296cac95 (patch) | |
| tree | e84e572de74e97c9895712166aea9217f169320e /src/hooks/mod.rs | |
| parent | feat: send action (diff) | |
feat: adds pet command.
When petting the cat it will reply with some random action.
Diffstat (limited to 'src/hooks/mod.rs')
| -rw-r--r-- | src/hooks/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hooks/mod.rs b/src/hooks/mod.rs index 49ec0ab..ee64643 100644 --- a/src/hooks/mod.rs +++ b/src/hooks/mod.rs @@ -1,9 +1,12 @@ +extern crate rand; + use anyhow::Result; use irc::client::prelude::*; pub mod sed; pub mod intensify; pub mod shifty_eyes; +pub mod pet; pub use shifty_eyes::shifty_eyes; pub use intensify::intensify; |
