mirror of
https://github.com/baiqwerdvd/ArknightsUID.git
synced 2025-05-05 03:23:45 +08:00
12 lines
299 B
Python
12 lines
299 B
Python
import asyncio
|
|
|
|
from .download_from_cos import download_all_file_from_cos
|
|
|
|
|
|
async def download_all_resource():
|
|
ret = await asyncio.gather(download_all_file_from_cos())
|
|
ret = [str(x) for x in ret if x]
|
|
if ret:
|
|
return "\n".join(ret)
|
|
return "arknights全部资源下载完成!"
|