Проверка шаблона шины для iOS
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- def isToggle(name, structure):
- # Проверяем наличие `toggle` в свойствах канала ядра.
- if name in structure.core.pipes:
- props = structure.core.pipes[name]
- if "toggle" in props:
- return True
-
- # Проверяем наличие `toggle` в свойствах канала сервиса.
- if name in structure.service.pipes:
- props = structure.service.pipes[name]
- if "toggle" in props:
- return True
-
- return False
|