goheung/app/routes/main.py
2026-02-02 19:07:53 +09:00

9 lines
150 B
Python

from flask import Blueprint, render_template
bp = Blueprint('main', __name__)
@bp.route('/')
def index():
return render_template('index.html')