(req, res)
| 190 | }; |
| 191 | |
| 192 | const getFGEP = async (req, res) => { |
| 193 | try { |
| 194 | let results = await service.getFGEP(); |
| 195 | res.send(results); |
| 196 | } catch (err) { |
| 197 | Sentry.captureException(err); |
| 198 | res.status(500).send({ |
| 199 | error: 'Something went wrong.' |
| 200 | }); |
| 201 | } |
| 202 | }; |
| 203 | |
| 204 | return { |
| 205 | getPP, |
nothing calls this directly
no outgoing calls
no test coverage detected