Update main.py

This commit is contained in:
TrainDoctor 2022-10-22 18:48:59 -07:00 committed by GitHub
parent 8dd0b92dc0
commit 05eefd80a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,4 +15,8 @@ class Plugin:
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
async def _main(self):
logger.info("Hello World!")
# Function called first during the unload process, utilize this to handle your plugin being removed
async def _unload(self):
logger.info("Goodbye World!")
pass