mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
20 lines
542 B
Go
20 lines
542 B
Go
|
// +build !linux
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/api/types"
|
||
|
"github.com/pkg/errors"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// Create is not supported on this platform
|
||
|
func Create(ctx context.Context, c CreateClient, name string, opts ...CreateOpt) error {
|
||
|
return errors.New("not supported on this platform")
|
||
|
}
|
||
|
|
||
|
// CreateInRegistry is not supported on this platform
|
||
|
func CreateInRegistry(ctx context.Context, repo string, auth *types.AuthConfig, opts ...CreateOpt) error {
|
||
|
return errors.New("not supported on this platform")
|
||
|
}
|