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

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



src/dubbo/configs.py [537:553]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def protocol(self) -> str:
        """
        Get the protocol of the registry.
        :return: The protocol of the registry.
        :rtype: str
        """
        return self._protocol

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



