src/dubbo/configs.py [411:447]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def host(self) -> str:
        """
        Get the host of the service.
        :return: The host of the service.
        :rtype: str
        """
        return self._host

    @host.setter
    def host(self, host: str) -> None:
        """
        Set the host of the service.
        :param host: The host of the service.
        :type host: str
        """
        self._host = host

    @property
    def port(self) -> int:
        """
        Get the port of the service.
        :return: The port of the service.
        :rtype: int
        """
        return self._port

    @port.setter
    def port(self, port: int) -> None:
        """
        Set the port of the service.
        :param port: The port of the service.
        :type port: int
        """
        self._port = port

    @property
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/dubbo/configs.py [555:591]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def host(self) -> str:
        """
        Get the host of the registry.
        :return: The host of the registry.
        :rtype: str
        """
        return self._host

    @host.setter
    def host(self, host: str) -> None:
        """
        Set the host of the registry.
        :param host: The host of the registry.
        :type host: str
        """
        self._host = host

    @property
    def port(self) -> int:
        """
        Get the port of the registry.
        :return: The port of the registry.
        :rtype: int
        """
        return self._port

    @port.setter
    def port(self, port: int) -> None:
        """
        Set the port of the registry.
        :param port: The port of the registry.
        :type port: int
        """
        self._port = port

    @property
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



