Refactor of pillar-server and pillar-web into a single python package. This simplifies the overall architecture of pillar applications. Special thanks @sybren and @venomgfx
6 lines
130 B
Python
6 lines
130 B
Python
from .routes import blueprint
|
|
|
|
|
|
def setup_app(app, url_prefix=None):
|
|
app.register_blueprint(blueprint, url_prefix=url_prefix)
|