9 lines
233 B
Python
9 lines
233 B
Python
# Launch features as events
|
|
|
|
import asyncio
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Import the syncDelta module to initialize it (this will register the scheduler)
|
|
from modules.features.syncDelta import mainSyncDelta
|