| 11 | ) |
| 12 | |
| 13 | type LocalPlugin struct { |
| 14 | ref flake.Ref |
| 15 | name string |
| 16 | pluginDir string |
| 17 | } |
| 18 | |
| 19 | func newLocalPlugin(ref flake.Ref, pluginDir string) (*LocalPlugin, error) { |
| 20 | plugin := &LocalPlugin{ref: ref, pluginDir: pluginDir} |
nothing calls this directly
no outgoing calls
no test coverage detected