Files
2026-08-05 16:55:57 +02:00

19 lines
269 B
Go

package command
import (
"cryosparc-merlin/config"
"cryosparc-merlin/ui"
)
type Command struct {
cfg config.Config
}
func New(cfg config.Config) *Command {
return &Command{cfg: cfg}
}
func (i *Command) runSteps(steps ...ui.Step) error {
return ui.Run(steps)
}