EN: The base Component interface defines operations that can be altered by decorators. RU: Базовый интерфейс Компонента определяет поведение, которое изменяется декораторами.
| 12 | |
| 13 | |
| 14 | class Component(): |
| 15 | """ |
| 16 | EN: The base Component interface defines operations that can be altered by |
| 17 | decorators. |
| 18 | |
| 19 | RU: Базовый интерфейс Компонента определяет поведение, которое изменяется |
| 20 | декораторами. |
| 21 | """ |
| 22 | |
| 23 | def operation(self) -> str: |
| 24 | pass |
| 25 | |
| 26 | |
| 27 | class ConcreteComponent(Component): |
nothing calls this directly
no outgoing calls
no test coverage detected