Files
python_script/flask-dev-api/blueprints/chmod_calc.py
2026-06-16 03:30:57 +08:00

10 lines
210 B
Python

# -*- coding: utf-8 -*-
from flask import Blueprint, render_template
bp = Blueprint('chmod_calc', __name__, url_prefix='/chmod-calc')
@bp.route('/')
def page():
return render_template('chmod_calc.html')