(request, response)
| 2 | import { getBanksData } from '@/services/banco-central'; |
| 3 | |
| 4 | const action = async (request, response) => { |
| 5 | const allBanksData = await getBanksData(); |
| 6 | |
| 7 | return response.status(200).json(allBanksData); |
| 8 | }; |
| 9 | |
| 10 | export default app().get(action); |
nothing calls this directly
no test coverage detected