Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
clientConfig.go 453 B
package interfaces

// ClientConfig contains SBI client
// configuration parameters
// Deprecated in favor of spf viper
type ClientConfig struct {
	Identifier           string `toml:"identifier"`
	Endpoint             string `toml:"endpoint"`
	Username             string `toml:"username"`
	Password             string `toml:"password"`
	GjsonDefaultPath     string `toml:"gjsonDefaultPath"`
	GjsonConnectionsPath string `toml:"gjsonConnectionsPath"`
}