
Details about CimFs project are discussed in #8346 Signed-off-by: Amit Barve <ambarve@microsoft.com>
13 lines
242 B
Go
13 lines
242 B
Go
//go:build windows
|
|
|
|
package runhcs
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Resume resumes all processes that have been previously paused.
|
|
func (r *Runhcs) Resume(ctx context.Context, id string) error {
|
|
return r.runOrError(r.command(ctx, "resume", id))
|
|
}
|