Files
MyFSIO/app/version.py
2026-03-25 13:26:42 +08:00

9 lines
159 B
Python

from __future__ import annotations
APP_VERSION = "0.4.2"
def get_version() -> str:
"""Return the current application version."""
return APP_VERSION