update github.com/containers/{image,storage}

Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2019-08-06 14:13:03 +02:00
parent c040b28fb8
commit 700b3102af
549 changed files with 154297 additions and 23467 deletions

View File

@@ -0,0 +1,15 @@
package storage
import (
"github.com/containers/storage/pkg/lockfile"
)
type Locker = lockfile.Locker
func GetLockfile(path string) (lockfile.Locker, error) {
return lockfile.GetLockfile(path)
}
func GetROLockfile(path string) (lockfile.Locker, error) {
return lockfile.GetROLockfile(path)
}