dynamo-browse/internal/common/ui/commandctrl/packs.go
2025-05-26 21:20:46 +10:00

13 lines
211 B
Go

package commandctrl
import (
"context"
"ucl.lmika.dev/ucl"
)
type CommandPack interface {
InstOptions() []ucl.InstOption
ConfigureUCL(ucl *ucl.Inst)
RunPrelude(ctx context.Context, ucl *ucl.Inst) error
}