plugin.py 246 B

12345678910111213
  1. from engine import log
  2. from engine.plugins.base import BasePlugin
  3. class HelloWorld(BasePlugin):
  4. def __init__(self):
  5. super().__init__()
  6. def start(self):
  7. self.hey()
  8. def hey(self):
  9. log.info('hey, i\'m world')