feat:添加服务进程管理

This commit is contained in:
2024-12-26 10:23:27 +08:00
parent 562b1add2a
commit 2e045fc0d8
6 changed files with 43 additions and 7 deletions

4
router/api.py Normal file
View File

@@ -0,0 +1,4 @@
from flask import Blueprint
api_bp = Blueprint('api', __name__)

8
router/page.py Normal file
View File

@@ -0,0 +1,8 @@
from flask import Blueprint
from flask import render_template
page_bp = Blueprint('page', __name__)
@page_bp.route('/')
def index():
return render_template('index.html')