+ add error pages

This commit is contained in:
oleting
2021-01-14 16:18:01 +01:00
parent b045869591
commit f008d160d1
12 changed files with 78 additions and 12 deletions

View File

@@ -7,7 +7,9 @@ def create_app(config_class=Config):
app.config.from_object(config_class)
from web_app.main.routes import main
from web_app.errors.handlers import errors
app.register_blueprint(main)
app.register_blueprint(errors)
return app