restrucuted blueprint layouts and added more skeleton api routes to be used from the frontend

This commit is contained in:
Oscar Cao
2025-01-23 23:49:08 +00:00
parent ced77e718a
commit be2248fcad
3 changed files with 29 additions and 14 deletions

View File

@@ -24,9 +24,13 @@ def create_app():
from blueprints.authentication import auth_bp
from blueprints.main import main_bp
from blueprints.stripe import stripe_bp
from blueprints.user import user_bp
from blueprints.streams import stream_bp
app.register_blueprint(auth_bp)
app.register_blueprint(main_bp)
app.register_blueprint(stripe_bp)
app.register_blueprint(user_bp)
app.register_blueprint(stream_bp)
return app