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

// ClientConfig contains SBI ciena
// configuration parameters
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"`
}