14 lines
349 B
Python
14 lines
349 B
Python
from typing import Annotated
|
|
|
|
from app.service.beatmap_download_service import BeatmapDownloadService, download_service
|
|
|
|
from fastapi import Depends
|
|
|
|
|
|
def get_beatmap_download_service():
|
|
"""获取谱面下载服务实例"""
|
|
return download_service
|
|
|
|
|
|
DownloadService = Annotated[BeatmapDownloadService, Depends(get_beatmap_download_service)]
|