mirror of
https://github.com/PaiGramTeam/FixMiYouShe.git
synced 2024-11-16 04:45:40 +00:00
12 lines
165 B
Python
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())
|