mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08: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.6.0'
|
|
|
|
|
|
def get_version() -> str | None:
|
|
console.print(f'[cyan]{__version__}[/]')
|