9 lines
181 B
Python
Executable file
9 lines
181 B
Python
Executable file
#!/usr/bin/env python3
|
|
import pathlib
|
|
|
|
from aiohttp import web
|
|
|
|
app = web.Application()
|
|
app.router.add_static("/", pathlib.Path(__file__).parent, show_index=True)
|
|
|
|
web.run_app(app)
|