mirror of
https://github.com/containers/podman.git
synced 2025-12-02 19:28:58 +08:00
Vendor some changes to parsing code that we need for Podman. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
17 lines
224 B
Go
17 lines
224 B
Go
// +build !linux,!darwin
|
|
|
|
package util
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
type HardlinkChecker struct {
|
|
}
|
|
|
|
func (h *HardlinkChecker) Check(fi os.FileInfo) string {
|
|
return ""
|
|
}
|
|
func (h *HardlinkChecker) Add(fi os.FileInfo, name string) {
|
|
}
|