Compare commits
No commits in common. '1b2592ed3288469ba460e9dc33862a2b7e9d12a8' and '25cd1944e1672b09aec6a88ad0214a0ef26dcbcd' have entirely different histories.
1b2592ed32
...
25cd1944e1
@ -1,6 +1,7 @@ |
||||
from .views import frontend |
||||
import aiohttp |
||||
|
||||
def setup_routes(app): |
||||
app.router.add_routes([aiohttp.web.get('/', frontend.index), aiohttp.web.post('/button-clicked', frontend.button_clicked)]) |
||||
|
||||
def setup_routes(app): |
||||
app.router.add_routes( |
||||
[aiohttp.web.get('/', frontend.index), aiohttp.web.post('/button-clicked', frontend.button_clicked)]) |
||||
|
Loading…
Reference in new issue