for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package mobilenig
import (
"net/http"
)
type clientConfig struct {
httpClient *http.Client
environment Environment
baseURL string
apiKey string
username string
}
func defaultClientConfig() *clientConfig {
return &clientConfig{
httpClient: http.DefaultClient,
apiKey: "",
username: "",
baseURL: apiBaseURL,
environment: LiveEnvironment,