|
@@ -87,6 +87,11 @@ async def tree_list():
|
|
|
html+="</table></body></html>"
|
|
|
return html
|
|
|
|
|
|
+@app.post("/proj_kw/",response_class=HTMLResponse)
|
|
|
+async def proj_kw(kw: str = Form(...),kws:Optional[str] = Form(None)):
|
|
|
+ kwlst=[]
|
|
|
+
|
|
|
+
|
|
|
|
|
|
#response_class=RedirectResponse
|
|
|
@app.post("/gen_tree/",response_class=HTMLResponse)
|