aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'runserver.py')
-rwxr-xr-xrunserver.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/runserver.py b/runserver.py
index 89b8f553..32e5e8e7 100755
--- a/runserver.py
+++ b/runserver.py
@@ -49,6 +49,7 @@ with application.app_context():
application.register_blueprint(views.user_bp)
application.register_blueprint(views.bookmarks_bp)
application.register_blueprint(views.bookmark_bp)
+ application.register_blueprint(views.stats_bp)
register_commands(application)
bgstack15