github.com/mgoltzsche/ctnr@v0.7.1-alpha/run/factory/factory_libcontainer.go (about) 1 // +build mgoltzsche_ctnr_libcontainer 2 3 package factory 4 5 import ( 6 "github.com/mgoltzsche/ctnr/pkg/log" 7 "github.com/mgoltzsche/ctnr/run" 8 "github.com/mgoltzsche/ctnr/run/librunner" 9 ) 10 11 func NewContainerManager(rootDir string, rootless bool, loggers log.Loggers) (run.ContainerManager, error) { 12 return librunner.NewContainerManager(rootDir, rootless, loggers) 13 }