Files
agessaman d6aec8ce29 Add service plugins configuration and packet capture integration
- Introduced a new [PacketCapture] section in config.ini.example to enable packet capture service with options for output file, verbosity, and MQTT configuration.
- Updated core.py to initialize and manage the packet capture service, including starting and stopping the service during bot operation.
- Enhanced DiceCommand to support mixed dice notation and added functionality for decade dice rolls, improving user experience for tabletop gaming commands.
- Updated translations to reflect new dice command usage and descriptions, ensuring clarity for users.
2025-12-21 15:44:46 -08:00

11 lines
190 B
Python

#!/usr/bin/env python3
"""
Service plugins for MeshCore Bot
Background services that run alongside the bot
"""
from .base_service import BaseServicePlugin
__all__ = ['BaseServicePlugin']