removing flask_login, fixed many appwriter issues with custom class
This commit is contained in:
10
app/blueprints/public/routes.py
Normal file
10
app/blueprints/public/routes.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from flask import Blueprint, redirect, url_for, render_template, session,flash
|
||||
from app.services.appwrite_client import AppWriteClient
|
||||
|
||||
|
||||
public_bp = Blueprint("public", __name__, url_prefix="/")
|
||||
|
||||
|
||||
@public_bp.route("/")
|
||||
def home():
|
||||
return render_template("public/home.html")
|
||||
Reference in New Issue
Block a user