mirror of
https://github.com/nqrduck/nqrduck-module.git
synced 2025-03-28 00:31:42 +00:00
7 lines
194 B
Python
7 lines
194 B
Python
"""Template for a NQRduck module."""
|
|
# If the module is called "duck" the following line would be:
|
|
# from .duck import Duck as Module
|
|
|
|
from .module import Module as Module
|
|
|
|
__all__ = ["Module"]
|