generated from dellevin/template
10 lines
210 B
Python
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')
|