...

Source file src/github.com/launchdarkly/go-server-sdk/v6/internal/endpoints/standard_endpoints.go

Documentation: github.com/launchdarkly/go-server-sdk/v6/internal/endpoints

     1  package endpoints
     2  
     3  const (
     4  	// DefaultStreamingBaseURI is the default base URI of the streaming service.
     5  	DefaultStreamingBaseURI = "https://stream.launchdarkly.com/"
     6  
     7  	// DefaultPollingBaseURI is the default base URI of the polling service.
     8  	DefaultPollingBaseURI = "https://sdk.launchdarkly.com/"
     9  
    10  	// DefaultEventsBaseURI is the default base URI of the events service.
    11  	DefaultEventsBaseURI = "https://events.launchdarkly.com/"
    12  
    13  	// StreamingRequestPath is the URL path for the server-side streaming endpoint.
    14  	StreamingRequestPath = "/all"
    15  
    16  	// PollingRequestPath is the URL path for the server-side polling endpoint.
    17  	PollingRequestPath = "/sdk/latest-all"
    18  
    19  	// Events service paths are defined in the go-sdk-events package
    20  )
    21  

View as plain text