Add workshops package

This commit is contained in:
Patrick Jentsch
2023-07-25 15:18:57 +02:00
parent ccf7f449dd
commit f80b635ca3
6 changed files with 169 additions and 0 deletions

View File

@ -102,4 +102,7 @@ def create_app(config: Config = Config) -> Flask:
default_breadcrumb_root(users_blueprint, '.users')
app.register_blueprint(users_blueprint, url_prefix='/users')
from .workshops import bp as workshops_blueprint
app.register_blueprint(workshops_blueprint, url_prefix='/workshops')
return app