termtap/internal/model/process.go
Hayden Hargreaves 24b00146bf feat: added lots of data to the models and collection process
Next step might actually be the TUI! Or maybe the raw proxy, it would be
nice to be able to just run the proxy.
2026-04-14 14:39:27 -07:00

15 lines
160 B
Go

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