( req: NextApiRequest, res: NextApiResponse )
| 3 | import { NextApiRequest, NextApiResponse } from 'next' |
| 4 | |
| 5 | export default async function apiLibraries( |
| 6 | req: NextApiRequest, |
| 7 | res: NextApiResponse |
| 8 | ) { |
| 9 | res.json(await getAllCache(Types.library)) |
| 10 | } |
nothing calls this directly
no test coverage detected