mirror of
https://github.com/containers/podman.git
synced 2025-11-13 09:38:05 +08:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.26.0 to 0.26.3. - [Release notes](https://github.com/containers/common/releases) - [Commits](containers/common@v0.26.0...v0.26.3) 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)
|
|
}
|