feat:添加服务进程管理
This commit is contained in:
4
router/api.py
Normal file
4
router/api.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from flask import Blueprint
|
||||
|
||||
api_bp = Blueprint('api', __name__)
|
||||
|
8
router/page.py
Normal file
8
router/page.py
Normal 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')
|
Reference in New Issue
Block a user