src.config.config_port
1from abc import ABC 2 3 4class ConfigRepoPort(ABC): 5 """Port: Configuration repository interface.""" 6 7 server_host: str 8 server_port: int 9 # TODO: Rename to oid4vci_agent_url 10 ssi_agent_url: str 11 awards_service_url: str 12 debug: bool 13 postgresql_connection_string: str 14 allowed_cors_domains: str 15 credential_configuration_id: str
class
ConfigRepoPort(abc.ABC):
5class ConfigRepoPort(ABC): 6 """Port: Configuration repository interface.""" 7 8 server_host: str 9 server_port: int 10 # TODO: Rename to oid4vci_agent_url 11 ssi_agent_url: str 12 awards_service_url: str 13 debug: bool 14 postgresql_connection_string: str 15 allowed_cors_domains: str 16 credential_configuration_id: str
Port: Configuration repository interface.