container, err := gardenClient.Create(garden.ContainerSpec{})
err := container.Start(garden.ProcessSpec{})
err := container.Stop(false)
err := container.Destroy()Using the Container Handle, users can also set properties on containers, run processes inside them, copy files to and from them, and more. In summary, the Container Handle is a package in the go github.com.cloudfoundry-incubator.garden library that provides an interface for managing containers.