|
@@ -58,7 +58,7 @@ async def document():
|
|
|
|
|
|
def api_start(host, port):
|
|
|
app.get("/", response_model=BaseResponse)(document)
|
|
|
- app.get("/znjd/doc/export/{token}", response_model=BaseResponse)(doc_export)
|
|
|
+ app.get("/znjd/doc/export/{token}/{request_id}", response_model=BaseResponse)(doc_export)
|
|
|
uvicorn.run(app, host=host, port=port)
|
|
|
|
|
|
|