mirror of
https://github.com/moby/moby.git
synced 2026-07-12 10:35:14 +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
246 B
Go
13 lines
246 B
Go
//go:build !linux && !freebsd
|
|
|
|
package logger // import "github.com/docker/docker/daemon/logger"
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
)
|
|
|
|
func openPluginStream(a *pluginAdapter) (io.WriteCloser, error) {
|
|
return nil, errors.New("log plugin not supported")
|
|
}
|