Info is the plugin info.
| 9 | |
| 10 | // Info is the plugin info. |
| 11 | type Info struct { |
| 12 | Version string |
| 13 | Author string |
| 14 | Name string |
| 15 | Website string |
| 16 | Description string |
| 17 | License string |
| 18 | ModulePath string |
| 19 | } |
| 20 | |
| 21 | func (c Info) String() string { |
| 22 | if c.Name != "" { |
nothing calls this directly
no outgoing calls
no test coverage detected