mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 12:49:36 +00:00
25 lines
401 B
Go
25 lines
401 B
Go
//go:build !darwin
|
|
|
|
package shim
|
|
|
|
func findClaimHelper() string {
|
|
return ""
|
|
}
|
|
|
|
// All of these are unused on Windows but are used on Linux.
|
|
// So we're just silencing Windows lint warnings here.
|
|
|
|
//nolint:unused
|
|
func dockerClaimHelperInstalled() bool {
|
|
return false
|
|
}
|
|
|
|
//nolint:unused
|
|
func claimDockerSock() bool {
|
|
return false
|
|
}
|
|
|
|
//nolint:unused
|
|
func dockerClaimSupported() bool {
|
|
return false
|
|
}
|