Files
tools/executor/di/hanlers.py
T
RemiZOffAlex ec8aa16893
Test Actions / Builder (push) Successful in 8s
Обновить executor/di/hanlers.py
2026-03-25 22:10:52 +03:00

15 lines
411 B
Python

__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
from executor.proto.git import (
handler_Git_Config_Get,
handler_Git_Config_List,
handler_Git_Config_Set
)
def register(dictionary):
dictionary.register('git.config.get', handler_Git_Config_Get)
dictionary.register('git.config.list', handler_Git_Config_List)
dictionary.register('git.config.set', handler_Git_Config_Set)