Pacman represents the Pacman package manager
| 13 | |
| 14 | // Pacman represents the Pacman package manager |
| 15 | type Pacman struct { |
| 16 | name string |
| 17 | osid string |
| 18 | } |
| 19 | |
| 20 | // NewPacman creates a new Pacman instance |
| 21 | func NewPacman(osid string) *Pacman { |
nothing calls this directly
no outgoing calls
no test coverage detected