mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-14 00:11:28 +05:30
90bf5da1c9
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
13 lines
214 B
Go
13 lines
214 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-credential-helpers/credentials"
|
|
"github.com/docker/docker-credential-helpers/wincred"
|
|
)
|
|
|
|
func main() {
|
|
credentials.Serve(wincred.Wincred{})
|
|
}
|