public IActionResult Get() { var stopwords = _stopwordService.GetStopwords(); return(Ok(stopwords)); }
public async Task <List <StopwordResponse> > Handle(GetStopwordQuery request, CancellationToken cancellationToken) { var stopwords = await _stopwordService.GetStopwords(); return(stopwords); }