PluginExtension returns the dynamic library file extension used for goos.
(goos string)
| 97 | |
| 98 | // PluginExtension returns the dynamic library file extension used for goos. |
| 99 | func PluginExtension(goos string) string { |
| 100 | return pluginExtension(goos) |
| 101 | } |
| 102 | |
| 103 | func pluginExtension(goos string) string { |
| 104 | switch goos { |
nothing calls this directly
no test coverage detected