| 3 | import { Request, Response } from "../utils"; |
| 4 | |
| 5 | class SearchController { |
| 6 | search = async (req: Request, res: Response) => { |
| 7 | const query = req.query.q as string; |
| 8 | let stocks = StockData.searchQueryInModel(query, 8); |
nothing calls this directly
no outgoing calls
no test coverage detected