aboutsummaryrefslogtreecommitdiff
path: root/src/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/runserver.py')
-rwxr-xr-xsrc/runserver.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/runserver.py b/src/runserver.py
index ff4fe444..1099b483 100755
--- a/src/runserver.py
+++ b/src/runserver.py
@@ -56,8 +56,6 @@ with application.app_context():
application.register_blueprint(views.admin_bp)
application.register_blueprint(views.users_bp)
application.register_blueprint(views.user_bp)
- application.register_blueprint(views.bookmarks_bp)
- application.register_blueprint(views.bookmark_bp)
if __name__ == '__main__':
bgstack15