NyaaV3/nyaa/views/__init__.py
Kfir Hadas f316353176 Move account routes into blueprint (#292)
and update templates,
and remove unused imports

Routes:
* /login
* /logout
* /register
* /profile
2017-07-27 14:14:00 +03:00

7 lines
93 B
Python

from nyaa.views import (
account,
site,
)
account_bp = account.bp
site_bp = site.bp