12 lines
314 B
Go
12 lines
314 B
Go
package namespaces
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
|
|
"github.com/docker/libcontainer"
|
|
)
|
|
|
|
type CreateCommand func(container *libcontainer.Config, console, dataPath, init string, childPipe *os.File, args []string) *exec.Cmd
|
|
type SetupCommand func(container *libcontainer.Config, console, dataPath, init string) *exec.Cmd
|