mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
13 lines
249 B
Python
13 lines
249 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
try:
|
|
from apscheduler.schedulers.asyncio import AsyncIOScheduler
|
|
except ImportError:
|
|
AsyncIOScheduler = None
|
|
|
|
if AsyncIOScheduler:
|
|
scheduler = AsyncIOScheduler()
|
|
else:
|
|
scheduler = None
|