mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
10 lines
194 B
Python
10 lines
194 B
Python
from __version__ import __version__
|
|
|
|
|
|
def get_version() -> str:
|
|
"""Returns current version tag"""
|
|
if not __version__ == "<version>":
|
|
return __version__
|
|
|
|
return "development"
|