Coverage for /Users/antonigmitruk/golf/src/golf/_endpoints_fallback.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-08-16 18:46 +0200
« prev ^ index » next coverage.py v7.6.12, created at 2025-08-16 18:46 +0200
1"""Fallback endpoints for development/editable installs."""
3import os
5# These are used when the generated _endpoints.py doesn't exist (dev mode)
6# or when environment variables override the built-in values
8PLATFORM_API_URL = os.getenv("GOLF_PLATFORM_API_URL", "http://localhost:8000/api/resources")
10OTEL_ENDPOINT = os.getenv("GOLF_OTEL_ENDPOINT", "http://localhost:4318/v1/traces")