You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
403 B
11 lines
403 B
from .views import frontend
|
|
import aiohttp
|
|
|
|
|
|
def setup_routes(app):
|
|
app.router.add_routes([aiohttp.web.get('/index.html', frontend.index),
|
|
aiohttp.web.post('/submit', frontend.button_clicked),
|
|
aiohttp.web.get('/index_2.html', frontend.index_2),
|
|
aiohttp.web.get('/ws', frontend.websocket_handler),]
|
|
)
|
|
|