Integrate inventory and enhanced checklist into mesh_bot

Co-authored-by: SpudGunMan <12676665+SpudGunMan@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-28 05:46:05 +00:00
parent 8372817733
commit 47c84d91f1
5 changed files with 31 additions and 0 deletions
+6
View File
@@ -282,6 +282,12 @@ if checklist_enabled:
trap_list = trap_list + trap_list_checklist # items checkin, checkout, checklist, purgein, purgeout
help_message = help_message + ", checkin, checkout"
# Inventory and POS Configuration
if inventory_enabled:
from modules.inventory import * # from the spudgunman/meshing-around repo
trap_list = trap_list + trap_list_inventory # items item, itemlist, itemsell, etc.
help_message = help_message + ", item, cart"
# Radio Monitor Configuration
if radio_detection_enabled:
from modules.radio import * # from the spudgunman/meshing-around repo