Release v0.1.0 Beta

This commit is contained in:
2025-11-21 22:01:34 +08:00
commit f400cedf02
40 changed files with 10720 additions and 0 deletions

9
app/version.py Normal file
View File

@@ -0,0 +1,9 @@
"""Central location for the application version string."""
from __future__ import annotations
APP_VERSION = "0.1.0"
def get_version() -> str:
"""Return the current application version."""
return APP_VERSION