ShowHostCommandMenu displays the command menu for a host
(host string, onClose func())
| 49 | |
| 50 | // ShowHostCommandMenu displays the command menu for a host |
| 51 | func (p *Plugin) ShowHostCommandMenu(host string, onClose func()) { |
| 52 | p.uiManager.ShowCommandMenu(TargetHost, host, onClose) |
| 53 | } |
| 54 | |
| 55 | // ShowContainerCommandMenu displays the command menu for a container |
| 56 | func (p *Plugin) ShowContainerCommandMenu(node string, vmid int, onClose func()) { |
no test coverage detected