termtap/internal/model/process.go
Hayden Hargreaves 453a26e529 feat: events pane complete and process restart
Lots of colors and new process restart feature.
2026-04-18 15:10:23 -07:00

16 lines
183 B
Go

package model
import "os/exec"
type Command struct {
Name string
Args []string
}
type Process struct {
Command Command
Exec *exec.Cmd
Running bool
Done chan struct{}
}