aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/help.rs
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2018-05-12 21:40:54 +0200
committerJokler <jokler.contact@gmail.com>2018-05-12 21:40:54 +0200
commit90bbc48e8f65566f38ee9bd0b10fbc53ce7ac4a7 (patch)
tree513710d5eb12780c1d50ddd2231cee8da8b0a90d /src/plugins/help.rs
parent243012bbcdbfae236f37919ddeae232278df8bbc (diff)
downloadfrippy-90bbc48e8f65566f38ee9bd0b10fbc53ce7ac4a7.tar.gz
frippy-90bbc48e8f65566f38ee9bd0b10fbc53ce7ac4a7.zip
Remind: Add initial remind plugin
Mysql is not supported yet.
Diffstat (limited to 'src/plugins/help.rs')
-rw-r--r--src/plugins/help.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/help.rs b/src/plugins/help.rs
index a02931c..b75086f 100644
--- a/src/plugins/help.rs
+++ b/src/plugins/help.rs
@@ -26,9 +26,12 @@ impl Plugin for Help {
fn command(&self, client: &IrcClient, command: PluginCommand) -> Result<(), FrippyError> {
Ok(client
- .send_notice(&command.source, "Available commands: help, currency, tell, factoids\r\n\
- For more detailed help call help on the specific command.\r\n\
- Example: 'currency help'")
+ .send_notice(
+ &command.source,
+ "Available commands: help, currency, tell, factoids, remind\r\n\
+ For more detailed help call help on the specific command.\r\n\
+ Example: 'currency help'",
+ )
.context(FrippyErrorKind::Connection)?)
}