mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Removed pre-go1.17 build-tags with go fix;
go mod init
go fix -mod=readonly ./...
rm go.mod
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
258 B
Go
9 lines
258 B
Go
//go:build !exclude_graphdriver_fuseoverlayfs && linux
|
|
|
|
package register // import "github.com/docker/docker/daemon/graphdriver/register"
|
|
|
|
import (
|
|
// register the fuse-overlayfs graphdriver
|
|
_ "github.com/docker/docker/daemon/graphdriver/fuse-overlayfs"
|
|
)
|