mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-07-04 02:26:44 -04:00

- Added weather plugin with functionality to fetch and display weather information using the OpenWeather API. - Integrated weather command into the main menu and updated command handlers to manage user interactions for weather queries. - Updated .gitignore to include database and configuration files. - Created a test client for interactive testing of the BBS system. - Added example configuration for the weather plugin.
9 lines
No EOL
266 B
Python
9 lines
No EOL
266 B
Python
from .command_router import handle_weather_command, handle_weather_steps
|
|
from .menu import get_weather_menu_item, get_weather_menu_text
|
|
|
|
__all__ = [
|
|
'handle_weather_command',
|
|
'handle_weather_steps',
|
|
'get_weather_menu_item',
|
|
'get_weather_menu_text'
|
|
] |