mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-15 03:04:37 +08:00
9 lines
204 B
Python
9 lines
204 B
Python
from . import routes # noqa: F401
|
|
|
|
|
|
def version():
|
|
# with open("pyproject.toml") as f:
|
|
# ret = re.findall(r'version = "(\d+\.\d+\.\d+)"', f.read())
|
|
# return ret[0]
|
|
return "0.3.3"
|