|
@@ -56,6 +56,12 @@ async def root():
|
|
|
@app.get("/index2")
|
|
|
async def index2():
|
|
|
return FileResponse('index2.html')
|
|
|
+@app.get("/script_msg.js")
|
|
|
+async def index2():
|
|
|
+ return FileResponse('script_msg.js')
|
|
|
+@app.get("/style.css")
|
|
|
+async def index2():
|
|
|
+ return FileResponse('style.css')
|
|
|
|
|
|
@app.post("/make_video_req")
|
|
|
async def make_video_req(req:request):
|