mirror of
https://github.com/containers/skopeo.git
synced 2025-09-24 11:26:59 +00:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.23.5 to 1.23.9. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](containers/storage@v1.23.5...v1.23.9) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
14 lines
192 B
Go
14 lines
192 B
Go
package mount
|
|
|
|
import (
|
|
"github.com/moby/sys/mountinfo"
|
|
)
|
|
|
|
type Info = mountinfo.Info
|
|
|
|
var Mounted = mountinfo.Mounted
|
|
|
|
func GetMounts() ([]*Info, error) {
|
|
return mountinfo.GetMounts(nil)
|
|
}
|