mirror of
https://github.com/rancher/plugins.git
synced 2025-07-16 00:05:59 +00:00
11 lines
230 B
Go
11 lines
230 B
Go
package runhcs
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Resume resumes all processes that have been previously paused.
|
|
func (r *Runhcs) Resume(context context.Context, id string) error {
|
|
return r.runOrError(r.command(context, "resume", id))
|
|
}
|