(objectType ObjectType, id string)
| 41 | } |
| 42 | |
| 43 | func createObjectID(objectType ObjectType, id string) ObjectID { |
| 44 | return ObjectID{ |
| 45 | Type: objectType, |
| 46 | ID: id, |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func searchTemplates(ctx context.Context, deps Deps, query string) ([]SearchResultItem, error) { |
| 51 | serverURL := deps.ServerURL() |
no outgoing calls
no test coverage detected