mirror of
https://github.com/sigmasternchen/grimoire-ssg
synced 2025-03-17 02:48:55 +00:00
9 lines
189 B
Python
9 lines
189 B
Python
from grimoiressg.modules import available_modules
|
|
from grimoiressg.utils import logger
|
|
|
|
|
|
def test(data, context):
|
|
logger.info("This is test module.")
|
|
|
|
|
|
available_modules["test"] = test
|