(kind string)
| 85 | } |
| 86 | |
| 87 | func (s *EntityService) Update(kind string) (OperationResult, error) { |
| 88 | if _, err := parseKind(kind); err != nil { |
| 89 | return OperationResult{}, err |
| 90 | } |
| 91 | return OperationResult{OK: true, Message: "repository update is available from the CLI and will be wired to desktop fetch flows incrementally"}, nil |
| 92 | } |
| 93 | |
| 94 | func entityStore(kind string) (*entities.Store, error) { |
| 95 | parsed, err := parseKind(kind) |
nothing calls this directly
no test coverage detected