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