-
Notifications
You must be signed in to change notification settings - Fork 480
Plugins
Luke Biery edited this page Jun 21, 2019
·
2 revisions
To implement a plugin that uses event callbacks
from manticore.core.plugin import Plugin
class CustomPlugin(Plugin):
def will_run_callback(self):
print("started running")
The full list of callbacks can be found here.