(ctx context.Context, data wshrpc.FetchSuggestionsData)
| 95 | } |
| 96 | |
| 97 | func (*ServerImpl) FetchSuggestionsCommand(ctx context.Context, data wshrpc.FetchSuggestionsData) (*wshrpc.FetchSuggestionsResponse, error) { |
| 98 | return suggestion.FetchSuggestions(ctx, data) |
| 99 | } |
| 100 | |
| 101 | func (*ServerImpl) DisposeSuggestionsCommand(ctx context.Context, widgetId string) error { |
| 102 | suggestion.DisposeSuggestions(ctx, widgetId) |
nothing calls this directly
no test coverage detected