mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +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>
13 lines
241 B
Go
13 lines
241 B
Go
//go:build !linux
|
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
func ensureDefaultAppArmorProfile() error {
|
|
return nil
|
|
}
|
|
|
|
// DefaultApparmorProfile returns an empty string.
|
|
func DefaultApparmorProfile() string {
|
|
return ""
|
|
}
|