Routes
How it works
In jija routes collect automatically from all apps and core app from routes.py in each app,
routes.py should contain a variable routes that is a list of endpoints.
Core app routes will starts with / and my_app routes will starts with /my_app/.
You can redefine url of app by add config to apps/my_app/app.py:
Endpoint
Endpoint is a class that contains information about path and view. It automatically adds all methods of view to router.
Include
If you want to create some group in your routes, you can use Include class instead of creating a subapp.