Register URL routes for Flask application or blueprint in lazy way
Need to add `init_app` and `init_blueprint` mehtods to the `LazyViews` class, to have ability use next syntax on initializing plugin: ``` from flask import Flask from flask.ext.lazyviews import LazyViews app = Flask(__name__) views = LazyViews() views.init_app(app) ``` or for blueprints: ``` from flask import Blueprint from flask.ext.lazyviews import LazyViews blueprint = Blueprint('blueprint', __name__) views = LazyViews() views.init_blueprint(blueprint) ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by playpauseandstop and has received 1 comments.