mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-08 00:27:54 +00:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.25.0 to 1.28.0. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.25.0...v1.28.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
17 lines
404 B
Go
17 lines
404 B
Go
package configs
|
|
|
|
import "github.com/opencontainers/runc/libcontainer/devices"
|
|
|
|
type (
|
|
// Deprecated: use libcontainer/devices.Device
|
|
Device = devices.Device
|
|
|
|
// Deprecated: use libcontainer/devices.Rule
|
|
DeviceRule = devices.Rule
|
|
|
|
// Deprecated: use libcontainer/devices.Type
|
|
DeviceType = devices.Type
|
|
|
|
// Deprecated: use libcontainer/devices.Permissions
|
|
DevicePermissions = devices.Permissions
|
|
)
|