9 lines
224 B
Python
9 lines
224 B
Python
from flask import Blueprint, redirect, url_for, render_template
|
|
from datetime import datetime
|
|
|
|
bp = Blueprint("app", __name__, url_prefix = "/")
|
|
|
|
@bp.route("/")
|
|
def index():
|
|
return redirect(url_for("topics.all_topics"))
|