1 //go:build windows 2 3 package runhcs 4 5 import ( 6 "context" 7 ) 8 9 // Resume resumes all processes that have been previously paused. 10 func (r *Runhcs) Resume(context context.Context, id string) error { 11 return r.runOrError(r.command(context, "resume", id)) 12 } 13