1 //go:build windows 2 3 package runhcs 4 5 import ( 6 "context" 7 ) 8 9 // Start will start an already created container. 10 func (r *Runhcs) Start(context context.Context, id string) error { 11 return r.runOrError(r.command(context, "start", id)) 12 } 13