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.
8 lines
245 B
8 lines
245 B
1 year ago
|
from fastapi.staticfiles import StaticFiles
|
||
|
from server import app
|
||
|
from config.env import UploadConfig
|
||
|
|
||
|
|
||
|
# 挂载静态文件路径
|
||
|
app.mount(f"{UploadConfig.UPLOAD_PREFIX}", StaticFiles(directory=f"{UploadConfig.UPLOAD_PATH}"), name="profile")
|