Versions in this module Expand all Collapse all v1 v1.0.0 Jun 9, 2025 Changes in this version + type Command struct + Command string + ID string + Name string + PID int + StartedAt time.Time + Status string + func NewCommand(PID int, name, status, command string) *Command + type Store struct + func NewStore() *Store + func (s *Store) Delete(name string) error + func (s *Store) List() ([]*Command, error) + func (s *Store) ListRunning() ([]*Command, error) + func (s *Store) ListRunningByNames(names []string) []*Command + func (s *Store) Save(c *Command) error