FixMiYouShe/refresh_data.py

12 lines
165 B
Python
Raw Normal View History

2024-03-11 13:01:01 +00:00
from src.data.get_bg import save_bg
async def refresh_data():
await save_bg()
if __name__ == "__main__":
import asyncio
asyncio.run(refresh_data())