MCPcopy
hub / github.com/CaviraOSS/OpenMemory / next

Function next

backend/src/server/server.js:63–66  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

61 fns.push(r ? (req, res, next) => r.handler(req, res, next) : (_req, res) => res.status(404).end('404: Not Found'));
62 let i = 0;
63 let next = () => {
64 if (i < fns.length)
65 fns[i++](req, res, next);
66 };
67 next();
68 });
69 SERVER.on('upgrade', (req, socket, head) => {

Callers 6

index.tsFile · 0.85
serverFunction · 0.85
serverStaticFunction · 0.85
authenticate_api_requestFunction · 0.85
req_tracker_mwFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected