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    ssi_agent_nonce_endpoint: str
12    ssi_agent_credential_endpoint: str
13    public_url: str
14    debug: bool
15    postgresql_connection_string: 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    ssi_agent_nonce_endpoint: str
13    ssi_agent_credential_endpoint: str
14    public_url: str
15    debug: bool
16    postgresql_connection_string: str

Port: Configuration repository interface.

server_host: str
server_port: int
ssi_agent_url: str
ssi_agent_nonce_endpoint: str
ssi_agent_credential_endpoint: str
public_url: str
debug: bool
postgresql_connection_string: str