Описание путей / 2

This commit is contained in:
stirelshka8_BigARM 2025-03-02 19:06:01 +03:00
parent 0221f1255d
commit f9fc25c64b
2 changed files with 5 additions and 1 deletions

1
.version Normal file
View File

@ -0,0 +1 @@
0.0.1

5
app.py
View File

@ -11,7 +11,10 @@ class Item(BaseModel):
@app.get('/', response_model=List[Item])
def get_items():
data_info = [Item(module_name="Crypto Licensing", module_version="1.0.0")]
with open('.version') as f:
module_version = f.read().strip()
data_info = [Item(module_name="Crypto Licensing", module_version=module_version)]
return data_info
# @app.get('/items/{item_id}', response_model=Optional[Item])