design-patterns/creational/abstract_factory/AbstractProductA.py
2020-09-29 22:05:56 +02:00

11 lines
260 B
Python

from abc import ABC
class AbstractProductA(ABC):
"""
Each distinct product of a product family should have a base interface. All
variants of the product must implement this interface.
"""
def useful_function_a(self) -> str:
pass