mirror of
https://github.com/mudler/luet.git
synced 2025-07-17 00:41:45 +00:00
12 lines
254 B
Go
12 lines
254 B
Go
// Copyright 2014 Docker authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the DOCKER-LICENSE file.
|
|
|
|
package archive
|
|
|
|
import "os"
|
|
|
|
func hasHardlinks(fi os.FileInfo) bool {
|
|
return false
|
|
}
|