Skip to content
Snippets Groups Projects
clientConfig.go 263 B
Newer Older
  • Learn to ignore specific revisions
  • package interfaces
    
    
    // ClientConfig contains SBI client
    // configuration parameters
    
    type ClientConfig struct {
    	Identifier string `toml:"identifier"`
    	Endpoint   string `toml:"endpoint"`
    	Username   string `toml:"username"`
    	Password   string `toml:"password"`
    }