mirror of
https://github.com/moby/moby.git
synced 2026-01-12 03:01:38 +00:00
- some method names were changed to have a 'Locking' suffix, as the downcased versions already existed, and the existing functions simply had locks around the already downcased version. - deleting unused functions - package comment - magic numbers replaced by golang constants - comments all over Signed-off-by: Morgan Bauer <mbauer@us.ibm.com>
9 lines
176 B
Go
9 lines
176 B
Go
// +build !exclude_graphdriver_devicemapper,linux
|
|
|
|
package daemon
|
|
|
|
import (
|
|
// register the devmapper graphdriver
|
|
_ "github.com/docker/docker/daemon/graphdriver/devmapper"
|
|
)
|