added more ends

This commit is contained in:
2024-12-06 10:37:09 -05:00
parent 80b38287b3
commit 82a715d52b
+21 -1
View File
@@ -25,12 +25,32 @@ class User(db.Model):
def __init__(self, email):
self.email = email
@app.route("/")
def hello_world():
return jsonify(hello="ameye world")
@app.route("/auth/login")
def statrt_login():
return jsonify(hello="ameye world")
@app.route("/auth/register")
def start_register():
return jsonify(hello="ameye world")
@app.route("/auth/resetpass")
def start_resetpass():
return jsonify(hello="ameye world")
@app.route("/account")
def account():
return jsonify(hello="ameye world")
@app.route("/account/dash")
def dashboard():
return jsonify(hello="ameye world")
@app.route("/static/<path:filename>")
def staticfiles(filename):
return send_from_directory(app.config["STATIC_FOLDER"], filename)