mirror of
https://github.com/KimigaiiWuyi/GenshinUID.git
synced 2025-05-31 04:30:29 +08:00
12 lines
308 B
Python
12 lines
308 B
Python
import asyncio
|
|
|
|
from .download_from_miniggicu import download_all_file_from_miniggicu
|
|
|
|
|
|
async def download_all_resource():
|
|
ret = await asyncio.gather(download_all_file_from_miniggicu())
|
|
ret = [str(x) for x in ret if x]
|
|
if ret:
|
|
return '\n'.join(ret)
|
|
return '全部资源下载完成!'
|