NyaaV3/nyaa/views/__init__.py
Kfir Hadas 0887dde6fc Move /user/<user_name> route into a blueprint
Move supporting functions and variables into other files
* nyaa.utils:
  - cached_function
  - chain_get
* nyaa.search:
  - DEFAULT_MAX_SEARCH_RESULT
  - DEFAULT_PER_PAGE
  - SERACH_PAGINATE_DISPLAY_MSG
  - _generate_query_string
2017-07-27 14:14:00 +03:00

11 lines
155 B
Python

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