nqrduck-module/src/nqrduck_module/controller.py

13 lines
391 B
Python
Raw Normal View History

2023-11-24 07:56:42 +00:00
from nqrduck.module.module_controller import ModuleController
# If the module is called "duck" the class would be called "DuckController"
class ModuleController(ModuleController):
def __init__(self, module):
"""Initialize the controller."""
super().__init__(module)
def on_loading(self):
"""This method is called when the module is loaded."""
pass