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