src/dubbo/configs.py [117:133]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def version(self) -> Optional[str]:
        """
        Get the version of the application.
        :return: The version of the application.
        :rtype: Optional[str]
        """
        return self._version

    @version.setter
    def version(self, version: str) -> None:
        """
        Set the version of the application.
        :param version: The version of the application.
        :type version: str
        """
        self._version = version
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/dubbo/configs.py [663:679]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def version(self) -> Optional[str]:
        """
        Get the version of the registry.
        :return: The version of the registry.
        :rtype: Optional[str]
        """
        return self._version

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



