feat:新增测试接口 轮询更新前端

This commit is contained in:
2024-12-31 16:12:54 +08:00
parent 7677852f2e
commit e36c7f4810
4 changed files with 178 additions and 9 deletions

View File

@@ -6,3 +6,7 @@ page_bp = Blueprint('page', __name__)
@page_bp.route('/')
def index():
return render_template('index.html')
@page_bp.route('/show')
def test():
return render_template('show.html')