Plugin provides command execution capabilities on Proxmox hosts.
| 16 | |
| 17 | // Plugin provides command execution capabilities on Proxmox hosts. |
| 18 | type Plugin struct { |
| 19 | app *components.App |
| 20 | runner *commandrunner.Plugin |
| 21 | timeout time.Duration |
| 22 | } |
| 23 | |
| 24 | // New creates a fresh plugin instance. |
| 25 | func New() *Plugin { |
nothing calls this directly
no outgoing calls
no test coverage detected