nqrduck-module/src/nqrduck_module/controller.py
2023-11-24 08:56:42 +01:00

13 lines
No EOL
391 B
Python

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