Skip to content
Luke Biery edited this page Jun 21, 2019 · 2 revisions

Plugins

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.

Clone this wiki locally