MCPcopy Index your code
hub / github.com/BingyanStudio/github-analyzer / getReport

Function getReport

api/src/services/generateReport.ts:413–420  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

411
412// Get report from Redis
413async function getReport(key: string): Promise<string | null> {
414 try {
415 return await redisClient.get(`report:${key}`);
416 } catch (err) {
417 console.error("Redis get error:", err);
418 return null;
419 }
420}
421
422// Save report to Redis
423async function saveReport(key: string, report: string): Promise<void> {

Callers 1

startFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected