nyaa/nyaa/routes.py

10 lines
315 B
Python
Raw Normal View History

2017-07-26 15:11:00 +00:00
from nyaa import app, template_utils, views
from nyaa.api_handler import api_blueprint
# Register all template filters and template globals
app.register_blueprint(template_utils.bp)
# Register the API routes
app.register_blueprint(api_blueprint, url_prefix='/api')
# Register the site's routes
views.register(app)