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

10 lines
213 B
Python

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