dynamo-browse/internal/common/ui/commandctrl/packs.go

13 lines
211 B
Go
Raw Normal View History

package commandctrl
2025-05-26 11:20:46 +00:00
import (
"context"
"ucl.lmika.dev/ucl"
)
type CommandPack interface {
2025-05-17 01:11:04 +00:00
InstOptions() []ucl.InstOption
ConfigureUCL(ucl *ucl.Inst)
2025-05-26 11:20:46 +00:00
RunPrelude(ctx context.Context, ucl *ucl.Inst) error
}