gateway/modules/features/init.py
2025-09-26 23:36:56 +02:00

14 lines
377 B
Python

# Launch features as events
import asyncio
import logging
from modules.interfaces.interfaceDbAppObjects import getRootInterface
logger = logging.getLogger(__name__)
rootInterface = getRootInterface()
eventUser = rootInterface.getUserByUsername("event")
# Custom features launch
from modules.features.syncDelta import mainSyncDelta
mainSyncDelta.startSyncManager(eventUser)