mirror of
https://github.com/containers/podman.git
synced 2025-11-02 23:39:52 +08:00
Update the login tests to reflect the latest changes to allow http{s}
prefixes (again) to address bugzilla.redhat.com/show_bug.cgi?id=2062072.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
11 lines
181 B
Go
11 lines
181 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package sysinfo
|
|
|
|
// New returns an empty SysInfo for windows for now.
|
|
func New(quiet bool) *SysInfo {
|
|
sysInfo := &SysInfo{}
|
|
return sysInfo
|
|
}
|