mirror of
https://github.com/sotam0316/brain_dogfood.git
synced 2026-04-25 03:48:38 +09:00
Refactor: Modularize memo.py to 3-layer architecture, Fix tag extraction regex, and Enhance infinite scroll for large screens
This commit is contained in:
@@ -7,6 +7,7 @@ def register_blueprints(app):
|
||||
from .file import file_bp
|
||||
from .ai import ai_bp
|
||||
from .settings import settings_bp
|
||||
from .stats import stats_bp # [Added]
|
||||
|
||||
app.register_blueprint(main_bp)
|
||||
app.register_blueprint(auth_bp)
|
||||
@@ -14,3 +15,4 @@ def register_blueprints(app):
|
||||
app.register_blueprint(file_bp)
|
||||
app.register_blueprint(ai_bp)
|
||||
app.register_blueprint(settings_bp)
|
||||
app.register_blueprint(stats_bp) # [Added]
|
||||
|
||||
Reference in New Issue
Block a user