mirror of
https://github.com/agessaman/meshcore-bot.git
synced 2026-03-30 12:05:38 +00:00
- 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.
11 lines
190 B
Python
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']
|
|
|