mirror of
https://github.com/moby/moby.git
synced 2026-07-12 02:25:19 +00:00
9 lines
184 B
Go
9 lines
184 B
Go
// +build !linux
|
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
// ModifyRootKeyLimit is a noop on unsupported platforms.
|
|
func ModifyRootKeyLimit() error {
|
|
return nil
|
|
}
|