Install installs a plugin.
(i Installer)
| 59 | |
| 60 | // Install installs a plugin. |
| 61 | func Install(i Installer) error { |
| 62 | _, err := InstallWithOptions(i, Options{}) |
| 63 | return err |
| 64 | } |
| 65 | |
| 66 | // VerificationResult contains the result of plugin verification |
| 67 | type VerificationResult struct { |
searching dependent graphs…