You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
226 B
11 lines
226 B
1 year ago
|
from fastapi import FastAPI
|
||
|
from middlewares.cors_middleware import add_cors_middleware
|
||
|
|
||
|
|
||
|
def handle_middleware(app: FastAPI):
|
||
|
"""
|
||
|
全局中间件处理
|
||
|
"""
|
||
|
# 加载跨域中间件
|
||
|
add_cors_middleware(app)
|