creating threads

This commit is contained in:
2025-07-01 14:14:29 +03:00
parent c7fb6784c4
commit 604f9d6aba
9 changed files with 165 additions and 10 deletions

View File

@ -70,10 +70,12 @@ def create_app():
from app.routes.app import bp as app_bp
from app.routes.topics import bp as topics_bp
from app.routes.threads import bp as threads_bp
from app.routes.users import bp as users_bp
from app.routes.mod import bp as mod_bp
app.register_blueprint(app_bp)
app.register_blueprint(topics_bp)
app.register_blueprint(threads_bp)
app.register_blueprint(users_bp)
app.register_blueprint(mod_bp)