-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement PluginManager and HelpPlugin (#326)
* Implement PluginManager interface Co-authored-by: Alex Tzonkov <4975715+attzonko@users.noreply.github.com>
- Loading branch information
Showing
17 changed files
with
509 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from mmpy_bot.plugins.base import Plugin | ||
from mmpy_bot.plugins.base import Plugin, PluginManager | ||
from mmpy_bot.plugins.example import ExamplePlugin | ||
from mmpy_bot.plugins.help_example import HelpPlugin | ||
from mmpy_bot.plugins.webhook_example import WebHookExample | ||
|
||
__all__ = ["Plugin", "ExamplePlugin", "WebHookExample"] | ||
__all__ = ["Plugin", "PluginManager", "HelpPlugin", "ExamplePlugin", "WebHookExample"] |
Oops, something went wrong.