plugins/vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/runhcs_start.go
Nathan Gieseker 9a429d8d25 Windows: Updates Windows Vendoring
Updates windows dependent libraries for vendoing.
2019-01-23 18:43:18 -08:00

11 lines
212 B
Go

package runhcs
import (
"context"
)
// Start will start an already created container.
func (r *Runhcs) Start(context context.Context, id string) error {
return r.runOrError(r.command(context, "start", id))
}