mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-13 16:01:28 +05:30
9f5511c8d5
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
13 lines
232 B
Go
13 lines
232 B
Go
//go:build darwin && cgo
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-credential-helpers/credentials"
|
|
"github.com/docker/docker-credential-helpers/osxkeychain"
|
|
)
|
|
|
|
func main() {
|
|
credentials.Serve(osxkeychain.Osxkeychain{})
|
|
}
|