mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 13:12:24 +00:00
10 lines
192 B
Python
10 lines
192 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from backend.utils.console import console
|
|
|
|
__version__ = '1.5.2'
|
|
|
|
|
|
def get_version() -> str | None:
|
|
console.print(f'[cyan]{__version__}[/]')
|