Files
Flacier 54621f2e88 fix: add missing core.bot_db module and update setup docs
- add the missing `core.bot_db` module referenced by existing imports

- keep the top-level `bot_db` module as a backward-compatible re-export

- update README to reflect the module layout and venv-based setup flow
2026-03-09 14:15:12 +08:00

27 lines
432 B
Python

from core.bot_db import (
ASYNC_RESULTS,
DB_FILE,
db_lock,
TELEMETRY_FILE,
get_telemetry_stats,
load_bots,
load_data,
log_telemetry,
remove_bot,
save_bot,
save_data,
)
__all__ = [
"ASYNC_RESULTS",
"DB_FILE",
"db_lock",
"TELEMETRY_FILE",
"get_telemetry_stats",
"load_bots",
"load_data",
"log_telemetry",
"remove_bot",
"save_bot",
"save_data",
]