This will configure the default behavior when beginning to evaluate a build target. When `stopOnEntry` is used, it will default to `stepNext`. Otherwise, `stepContinue` will be used. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
8 lines
118 B
Go
8 lines
118 B
Go
package dap
|
|
|
|
import "github.com/docker/buildx/dap/common"
|
|
|
|
type LaunchConfig interface {
|
|
GetConfig() common.Config
|
|
}
|