mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-13 16:01:28 +05:30
0c4810e01f
Signed-off-by: David Calavera <david.calavera@gmail.com>
11 lines
198 B
Go
11 lines
198 B
Go
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-credential-helpers/credentials"
|
|
"github.com/docker/docker-credential-helpers/osxkeychain"
|
|
)
|
|
|
|
func main() {
|
|
credentials.Serve(osxkeychain.New())
|
|
}
|