()
| 19 | } |
| 20 | |
| 21 | func (h HubPluginRef) String() string { |
| 22 | return fmt.Sprintf("%s/%s/%s@%s", h.TeamName, h.Kind, h.Name, h.Version) |
| 23 | } |
| 24 | |
| 25 | func ParseHubPluginRef(ref string) (*HubPluginRef, error) { |
| 26 | versionParts := strings.Split(ref, "@") |
no outgoing calls
no test coverage detected