Add PostHog integration for analytics and error debugging

This commit is contained in:
0xallam
2026-01-09 12:26:56 -08:00
parent bcd6b8a715
commit 94bb97143e
7 changed files with 237 additions and 14 deletions
+7 -1
View File
@@ -1,4 +1,10 @@
from . import posthog
from .tracer import Tracer, get_global_tracer, set_global_tracer
__all__ = ["Tracer", "get_global_tracer", "set_global_tracer"]
__all__ = [
"Tracer",
"get_global_tracer",
"posthog",
"set_global_tracer",
]