mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-12 22:06:55 +02:00

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
11 lines
155 B
Python
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
|