Files
tools/executor/di/hanlers.py
T

15 lines
411 B
Python
Raw Normal View History

2026-03-25 21:18:37 +03:00
__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
2026-03-25 22:10:06 +03:00
from executor.proto.git import (
handler_Git_Config_Get,
handler_Git_Config_List,
handler_Git_Config_Set
)
2026-03-25 21:54:45 +03:00
2026-03-25 21:18:37 +03:00
def register(dictionary):
2026-03-25 22:10:06 +03:00
dictionary.register('git.config.get', handler_Git_Config_Get)
2026-03-25 22:10:43 +03:00
dictionary.register('git.config.list', handler_Git_Config_List)
2026-03-25 22:10:52 +03:00
dictionary.register('git.config.set', handler_Git_Config_Set)