10 lines
266 B
Go
10 lines
266 B
Go
package lib
|
|
|
|
import shared "plandex-shared"
|
|
|
|
var buildPlanInlineFn func(autoConfirm bool, maybeContexts []*shared.Context) (bool, error)
|
|
|
|
func SetBuildPlanInlineFn(fn func(autoConfirm bool, maybeContexts []*shared.Context) (bool, error)) {
|
|
buildPlanInlineFn = fn
|
|
}
|