lab
/
slides-proxy
Archived
1
Fork 0
This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
slides-proxy/src/app.py

9 lines
160 B
Python

from aiohttp import web
import socketio
sio = socketio.AsyncServer()
app = web.Application()
sio.attach(app)
app.router.add_static('/static', "static/build")