diff --git a/executor/di/hanlers.py b/executor/di/hanlers.py index 18b7b79..c648cc5 100644 --- a/executor/di/hanlers.py +++ b/executor/di/hanlers.py @@ -1,8 +1,12 @@ __author__ = 'RemiZOffAlex' __email__ = 'remizoffalex@mail.ru' -from executor.proto.git import handler_Git_Config +from executor.proto.git import ( + handler_Git_Config_Get, + handler_Git_Config_List, + handler_Git_Config_Set +) def register(dictionary): - dictionary.register('git.config', handler_Git_Config) + dictionary.register('git.config.get', handler_Git_Config_Get)