Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -116,6 +116,10 @@ async def script1_js():
|
|
116 |
async def script2_js():
|
117 |
return FileResponse("script2.js")
|
118 |
|
|
|
|
|
|
|
|
|
119 |
@app.get("/")
|
120 |
async def read_index():
|
121 |
return FileResponse('index.html')
|
|
|
116 |
async def script2_js():
|
117 |
return FileResponse("script2.js")
|
118 |
|
119 |
+
@app.get("/styles.css")
|
120 |
+
async def styles_css():
|
121 |
+
return FileResponse("styles.css")
|
122 |
+
|
123 |
@app.get("/")
|
124 |
async def read_index():
|
125 |
return FileResponse('index.html')
|