mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-23 07:31:03 +00:00
update to a version compatible with go1.22 and up Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
382 B
Go
10 lines
382 B
Go
package guid
|
|
|
|
import "golang.org/x/sys/windows"
|
|
|
|
// GUID represents a GUID/UUID. It has the same structure as
|
|
// golang.org/x/sys/windows.GUID so that it can be used with functions expecting
|
|
// that type. It is defined as its own type so that stringification and
|
|
// marshaling can be supported. The representation matches that used by native
|
|
// Windows code.
|
|
type GUID windows.GUID
|