Files
2026-07-13 13:33:09 +08:00

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
}