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_darwin.go
T
David Calavera a701e3c310 Remove extra package.
Signed-off-by: David Calavera <david.calavera@gmail.com>
2016-02-09 13:03:40 -08:00

11 lines
202 B
Go

package main
import (
"github.com/calavera/docker-credential-helpers/credentials"
"github.com/calavera/docker-credential-helpers/osxkeychain"
)
func main() {
credentials.Serve(osxkeychain.New())
}