feat:搭建项目结构

This commit is contained in:
2024-12-23 11:01:44 +08:00
parent fec24a50e0
commit aaf297717a
7 changed files with 53 additions and 0 deletions

4
web/api.py Normal file
View File

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

3
web/page.py Normal file
View File

@@ -0,0 +1,3 @@
from flask import Blueprint
page_bp = Blueprint('page', __name__)