-
Notifications
You must be signed in to change notification settings - Fork 1
write hook
开普以尔 edited this page Jun 20, 2023
·
2 revisions
poetry new <hook_name>
- Create a new __init__.py file
from gameyamlspiderandgenerator.hook import BaseHook
class YourHookName(BaseHook):
CHANGED : list | None = None # Which key names in the dictionary did you change
def setup(self, data: dict):
pass # Your main Hook program
pip install yamlgenerator-hook-<hook_name>