mirror of
https://github.com/sigmasternchen/grimoire
synced 2025-03-14 23:58:54 +00:00
9 lines
197 B
Python
9 lines
197 B
Python
from grimoiressg.modules import available_modules
|
|
from grimoiressg.utils import logger
|
|
|
|
|
|
def test(data, context, config):
|
|
logger.info("This is test module.")
|
|
|
|
|
|
available_modules["test"] = test
|