26 lines
586 B
Python
26 lines
586 B
Python
"""
|
|
tools.py - Stub de compatibilidade.
|
|
Todas as funções foram movidas para core_tools.py.
|
|
Manter este arquivo para não quebrar imports existentes.
|
|
"""
|
|
from core_tools import (
|
|
AVAILABLE_TOOLS,
|
|
run_bash_command,
|
|
get_docker_stats,
|
|
read_vps_file,
|
|
get_system_health,
|
|
cronos_log,
|
|
cronos_query,
|
|
list_gmail_emails,
|
|
gmail_manage_label,
|
|
gmail_manage_filter,
|
|
drive_find,
|
|
drive_upload,
|
|
calendar_agenda,
|
|
resolve_account,
|
|
ACCOUNT_MAPPING,
|
|
)
|
|
|
|
# Mantém AVAILABLE_TOOLS com mesmo nome do arquivo antigo
|
|
AVAILABLE_TOOLS = AVAILABLE_TOOLS
|