buildx/dap/common/config.go

10 lines
138 B
Go

package common
type Config struct {
StopOnEntry bool `json:"stopOnEntry,omitempty"`
}
func (c Config) GetConfig() Config {
return c
}