github.com/driusan/dgit@v0.0.0-20221118233547-f39f0c15edbb/git/auth.go (about)

     1  package git
     2  
     3  // Denotes a username/password combo to be used to
     4  // authenticate (generally for an HTTP connection
     5  // while pushing.)
     6  type userPasswd struct {
     7  	user, password string
     8  }