1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30

Add support for Windows credential manager.

Signed-off-by: David Calavera <david.calavera@gmail.com>
This commit is contained in:
David Calavera
2016-02-19 19:15:51 -05:00
parent dd7a71bb12
commit 03b6cfc014
5 changed files with 103 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package main
import (
"github.com/docker/docker-credential-helpers/credentials"
"github.com/docker/docker-credential-helpers/wincred"
)
func main() {
credentials.Serve(wincred.New())
}