phi/src/phi/api/routes.py

10 lines
195 B
Python
Raw Normal View History

2017-12-21 13:44:54 +01:00
from aiohttp.web import route
2017-12-16 23:03:03 +01:00
2020-08-29 20:14:55 +02:00
from phi.api.rest import UserView
2017-12-16 23:03:03 +01:00
api_routes = [
2020-08-29 20:14:55 +02:00
route("*", "/user", UserView),
route("*", "/user/", UserView),
route("*", "/user/{uid}", UserView),
2017-12-16 23:03:03 +01:00
]