Описание путей / 2
This commit is contained in:
parent
0221f1255d
commit
f9fc25c64b
5
app.py
5
app.py
@ -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])
|
||||
|
Loading…
Reference in New Issue
Block a user