Separate Python and Rust into python/ and rust/ with per-stack Dockerfiles

This commit is contained in:
2026-04-19 14:01:05 +08:00
parent be8e030940
commit c2ef37b84e
184 changed files with 96 additions and 85 deletions

8
python/app/version.py Normal file
View File

@@ -0,0 +1,8 @@
from __future__ import annotations
APP_VERSION = "0.4.3"
def get_version() -> str:
"""Return the current application version."""
return APP_VERSION