This commit is contained in:
pengtao 2021-12-15 15:47:25 +08:00
parent f400846138
commit f6bfc350c9

View File

@ -27,8 +27,9 @@ tags_metadata = [
def create_app(): def create_app():
application = FastAPI(dependencies=[Depends(get_token_header)], # application = FastAPI(dependencies=[Depends(get_token_header)],
openapi_tags=tags_metadata) # openapi_tags=tags_metadata)
application = FastAPI()
return application return application