mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
14 lines
283 B
Go
14 lines
283 B
Go
|
// +build !experimental !linux
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/daemon"
|
||
|
"github.com/docker/docker/libcontainerd"
|
||
|
"github.com/docker/docker/registry"
|
||
|
)
|
||
|
|
||
|
func pluginInit(config *daemon.Config, remote libcontainerd.Remote, rs registry.Service) error {
|
||
|
return nil
|
||
|
}
|