...

Source file src/github.com/docker/docker-credential-helpers/pass/cmd/main.go

Documentation: github.com/docker/docker-credential-helpers/pass/cmd

     1  package main
     2  
     3  import (
     4  	"github.com/docker/docker-credential-helpers/credentials"
     5  	"github.com/docker/docker-credential-helpers/pass"
     6  )
     7  
     8  func main() {
     9  	credentials.Serve(pass.Pass{})
    10  }
    11  

View as plain text