Files
MyFSIO/app/version.py
2025-11-22 23:03:50 +08:00

10 lines
218 B
Python

"""Central location for the application version string."""
from __future__ import annotations
APP_VERSION = "0.1.2"
def get_version() -> str:
"""Return the current application version."""
return APP_VERSION