...

Source file src/github.com/launchdarkly/go-server-sdk/v6/interfaces/service_endpoints.go

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

     1  package interfaces
     2  
     3  // ServiceEndpoints allow configuration of custom service URIs.
     4  //
     5  // If you want to set non-default values for any of these fields, set the ServiceEndpoints field
     6  // in the SDK's [github.com/launchdarkly/go-server-sdk/v6.Config] struct. You may set individual
     7  // values such as Streaming, or use the helper method
     8  // [github.com/launchdarkly/go-server-sdk/v6/ldcomponents.RelayProxyEndpoints].
     9  //
    10  // See Config.ServiceEndpoints for more details.
    11  type ServiceEndpoints struct {
    12  	Streaming string
    13  	Polling   string
    14  	Events    string
    15  }
    16  

View as plain text