FixMiYouShe/refresh_data.py
2024-03-11 21:01:01 +08:00

12 lines
165 B
Python

from src.data.get_bg import save_bg
async def refresh_data():
await save_bg()
if __name__ == "__main__":
import asyncio
asyncio.run(refresh_data())