+ Added example plugin

This commit is contained in:
Matthew Cech
2019-04-20 02:08:38 -07:00
parent 7e57ad79a0
commit 125e397a10
2 changed files with 19 additions and 13 deletions
+6
View File
@@ -0,0 +1,6 @@
-- Example plugin stub. This function is called and passed the input message.
-- If nil is returned, the plugin is considered to have not run, but if any
-- other value is returned, it's interpreted as a string and sent back to the user.
function plugin(message)
return nil;
end