github.com/olli-ai/jx/v2@v2.0.400-0.20210921045218-14731b4dd448/pkg/config/types.go (about)

     1  package config
     2  
     3  // BasicAuth keeps the credentials for basic authentication
     4  type BasicAuth struct {
     5  	// Username stores the basic authentication user name
     6  	Username string `json:"username"`
     7  	// Password stores the basic authentication password
     8  	Password string `json:"password"`
     9  }