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

wincred: use go build constraint

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-05-28 20:23:45 +02:00
parent 6a2f53622b
commit 90bf5da1c9
3 changed files with 6 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
//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{})
}