1
0
Fork 0
mirror of https://github.com/ProjectSynthoria/SynthoriaArchive.git synced 2025-03-12 23:36:54 +02:00
SynthoriaArchive/nyaa/views/__init__.py
Kfir Hadas 3913d8cea2 Move admin routes into blueprint
and update templates

Routes:
* /reports
* /adminlog
2017-07-27 14:14:00 +03:00

9 lines
124 B
Python

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