13 lines
277 B
Python
13 lines
277 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)
|