
Details about CimFs project are discussed in #8346 Signed-off-by: Amit Barve <ambarve@microsoft.com>
13 lines
224 B
Go
13 lines
224 B
Go
//go:build windows
|
|
|
|
package runhcs
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Start will start an already created container.
|
|
func (r *Runhcs) Start(ctx context.Context, id string) error {
|
|
return r.runOrError(r.command(ctx, "start", id))
|
|
}
|