26 lines
572 B
Python
26 lines
572 B
Python
from abc import ABC, abstractmethod
|
|
|
|
from sh_edraft.configuration.base.configuration_base import ConfigurationBase
|
|
from sh_edraft.service.base.service_provider_base import ServiceProviderBase
|
|
|
|
|
|
class ApplicationHostBase(ABC):
|
|
|
|
@abstractmethod
|
|
def __init__(self): pass
|
|
|
|
@property
|
|
@abstractmethod
|
|
def name(self) -> str: pass
|
|
|
|
@property
|
|
@abstractmethod
|
|
def configuration(self) -> ConfigurationBase: pass
|
|
|
|
@property
|
|
@abstractmethod
|
|
def services(self) -> ServiceProviderBase: pass
|
|
|
|
@abstractmethod
|
|
def create(self): pass
|