...

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

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

     1  //go:build darwin && cgo
     2  
     3  package main
     4  
     5  import (
     6  	"github.com/docker/docker-credential-helpers/credentials"
     7  	"github.com/docker/docker-credential-helpers/osxkeychain"
     8  )
     9  
    10  func main() {
    11  	credentials.Serve(osxkeychain.Osxkeychain{})
    12  }
    13  

View as plain text