BinaryONe
commited on
Commit
·
2975db2
1
Parent(s):
c283ccc
Miseleneous Fixes - Update on HTMLs
Browse files
FileStream/server/__init__.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import asyncio
|
| 2 |
import logging
|
| 3 |
from aiohttp import web
|
|
@@ -47,7 +48,7 @@ def web_server():
|
|
| 47 |
web_app.add_subapp('/app', app)
|
| 48 |
web_app.add_subapp('/api', api)
|
| 49 |
web_app.add_subapp('/auth', auth)
|
| 50 |
-
|
| 51 |
# Add static file handler
|
| 52 |
web_app.router.add_static('/static/', template_folder)
|
| 53 |
|
|
|
|
| 1 |
+
import os
|
| 2 |
import asyncio
|
| 3 |
import logging
|
| 4 |
from aiohttp import web
|
|
|
|
| 48 |
web_app.add_subapp('/app', app)
|
| 49 |
web_app.add_subapp('/api', api)
|
| 50 |
web_app.add_subapp('/auth', auth)
|
| 51 |
+
|
| 52 |
# Add static file handler
|
| 53 |
web_app.router.add_static('/static/', template_folder)
|
| 54 |
|