1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-14 00:11:28 +05:30
Files
docker-credential-helpers/osxkeychain/cmd/main.go
T
2023-05-29 12:02:48 +02:00

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{})
}