mirror of
https://github.com/arc53/DocsGPT.git
synced 2026-05-07 06:30:03 +00:00
11 lines
195 B
Python
11 lines
195 B
Python
"""DocsGPT backend version string."""
|
|
|
|
from __future__ import annotations
|
|
|
|
__version__ = "0.17.0"
|
|
|
|
|
|
def get_version() -> str:
|
|
"""Return the DocsGPT backend version."""
|
|
return __version__
|