Lifecycle Hooks
on_load
@override
def on_load(self, db):
print("Plugin loaded")on_unload
@override
def on_unload(self, db):
print("Plugin unloaded")on_start
@override
def on_start(self, db):
print("Plugin started")on_stop
Last updated
Was this helpful?