Reorganized files in preparation for interface work

This commit is contained in:
Matthew Grotke 2026-05-15 00:26:45 -04:00
parent df09e99888
commit c4fe022d42
9 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,12 @@
from flask import Flask
from page_dashboard import bp as dashboard_bp
from page_signup import bp as signup_bp
from page_signin import bp as signin_bp
app = Flask(__name__)
app.register_blueprint(dashboard_bp)
app.register_blueprint(signup_bp)
app.register_blueprint(signin_bp)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=25327)

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1 @@
{}