4a19d70af1
Lint with Ruff / ruff (push) Has been cancelled
MCP Server Tests / live-mcp-tests (push) Has been cancelled
Tests / unit-tests (push) Has been cancelled
Tests / database-integration-tests (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Server Tests / live-server-tests (push) Has been cancelled
Pyright Type Check / pyright (push) Has been cancelled
10 lines
226 B
Python
10 lines
226 B
Python
"""
|
|
Telemetry module for Graphiti.
|
|
|
|
This module provides anonymous usage analytics to help improve Graphiti.
|
|
"""
|
|
|
|
from .telemetry import capture_event, is_telemetry_enabled
|
|
|
|
__all__ = ['capture_event', 'is_telemetry_enabled']
|