Files
iDRAC_Info/backend/routes/home.py
2025-10-05 17:37:51 +09:00

13 lines
298 B
Python

from __future__ import annotations
from flask import Blueprint, render_template
home_bp = Blueprint("home", __name__, url_prefix="/home")
def register_home_routes(app):
app.register_blueprint(home_bp)
@home_bp.route("/", methods=["GET"])
def home():
return render_template("home.html")