mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-06 03:46:10 +08:00
9 lines
212 B
Python
9 lines
212 B
Python
from apscheduler.schedulers.asyncio import AsyncIOScheduler
|
|
|
|
aps = AsyncIOScheduler(timezone="Asia/Shanghai")
|
|
|
|
|
|
def start_scheduler():
|
|
aps.configure({"apscheduler.timezone": "Asia/Shanghai"})
|
|
aps.start()
|