import ( "github.com/coreos/rkt/tests/testutils" ) func main() { ctx := testutils.NewRktRunCtx() defer ctx.Cleanup() // Run a container with one of the included test images err := ctx.Run([]string{"--image=acbuild-test-apps/hello"}) if err != nil { // Handle error } // Interact with the container (e.g. run a command inside it) err = ctx.RunInContainer([]string{"echo", "Hello, world!"}) if err != nil { // Handle error } }In this example, we create a new RktRunCtx struct and defer its Cleanup() method to ensure that the container is properly cleaned up when the program finishes. We then use the Run() method to start a container using one of the test images included with the package, and the RunInContainer() method to run a command inside the container. Overall, this package is a useful set of utilities for testing and interacting with Rkt containers in Go.