1package libnetwork
2
3import "github.com/docker/docker/pkg/reexec"
4
5type setKeyData struct {
6	ContainerID string
7	Key         string
8}
9
10func init() {
11	reexec.Register("libnetwork-setkey", processSetKeyReexec)
12}
13