sh_cpl/src/cpl/dependency_injection/service_abc.py

12 lines
178 B
Python

from abc import ABC, abstractmethod
class ServiceABC(ABC):
@abstractmethod
def __init__(self):
"""
ABC to represent a service
"""
pass