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 abe304a2c9bf139e74af8a1d15ae6a4e734d6e90 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 }