
This needs to be registered last after all other services have been registred. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
16 lines
611 B
Go
16 lines
611 B
Go
package main
|
|
|
|
// register containerd builtins here
|
|
import (
|
|
_ "github.com/containerd/containerd/differ"
|
|
_ "github.com/containerd/containerd/services/containers"
|
|
_ "github.com/containerd/containerd/services/content"
|
|
_ "github.com/containerd/containerd/services/diff"
|
|
_ "github.com/containerd/containerd/services/execution"
|
|
_ "github.com/containerd/containerd/services/healthcheck"
|
|
_ "github.com/containerd/containerd/services/images"
|
|
_ "github.com/containerd/containerd/services/namespaces"
|
|
_ "github.com/containerd/containerd/services/snapshot"
|
|
_ "github.com/containerd/containerd/services/version"
|
|
)
|