mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-13 16:01:28 +05:30
7810dc4db9
- Bump golang.org/x/sys from 0.17.0 to 0.20.0 - Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 - Added missing constant to sys_unsupported.go to avoid breaking builds on non-Windows platforms. full diff: https://github.com/danieljoos/wincred/compare/v1.2.1...v1.2.2 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
13 lines
281 B
Go
13 lines
281 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build windows
|
|
|
|
package windows
|
|
|
|
import "syscall"
|
|
|
|
type Errno = syscall.Errno
|
|
type SysProcAttr = syscall.SysProcAttr
|