(ctx context.Context, workspaceFolder, configPath string, opts ...DevcontainerCLIUpOptions)
| 101 | // DevcontainerCLI is an interface for the devcontainer CLI. |
| 102 | type DevcontainerCLI interface { |
| 103 | Up(ctx context.Context, workspaceFolder, configPath string, opts ...DevcontainerCLIUpOptions) (id string, err error) |
| 104 | Exec(ctx context.Context, workspaceFolder, configPath string, cmd string, cmdArgs []string, opts ...DevcontainerCLIExecOptions) error |
| 105 | ReadConfig(ctx context.Context, workspaceFolder, configPath string, env []string, opts ...DevcontainerCLIReadConfigOptions) (DevcontainerConfig, error) |
| 106 | } |
no outgoing calls