Update dependencies
This commit is contained in:
17
vendor/github.com/dblohm7/wingoes/guid_notwindows.go
generated
vendored
Normal file
17
vendor/github.com/dblohm7/wingoes/guid_notwindows.go
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
//go:build !windows
|
||||
|
||||
package wingoes
|
||||
|
||||
type GUID struct {
|
||||
Data1 uint32
|
||||
Data2 uint16
|
||||
Data3 uint16
|
||||
Data4 [8]byte
|
||||
}
|
||||
|
||||
func (guid GUID) String() string {
|
||||
return guidToString(guid)
|
||||
}
|
||||
Reference in New Issue
Block a user