
Implements the containerd-shim-runhcs-v1 shim on Windows for the runtime v2 shim API. Signed-off-by: Justin Terry (VM) <juterry@microsoft.com>
11 lines
212 B
Go
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))
|
|
}
|