GetURL returns the project or the download URL of a well-known plugin.
(name string)
| 73 | |
| 74 | // GetURL returns the project or the download URL of a well-known plugin. |
| 75 | func GetURL(name string) string { |
| 76 | switch name { |
| 77 | case "kms": |
| 78 | return "https://github.com/smallstep/step-kms-plugin" |
| 79 | default: |
| 80 | return "" |
| 81 | } |
| 82 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…