the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 2980387d6cfe3cc8e65e978e66c2f30de8a01abc 10 lines 258 B view raw
1import type express from 'express' 2 3export const handler = 4 (fn: express.Handler) => async (req: express.Request, res: express.Response, next: express.NextFunction) => { 5 try { 6 await fn(req, res, next) 7 } catch (err) { 8 next(err) 9 } 10 }