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