Create all Hiyve route handlers from a config.
Returns individual handler functions that can be mounted on any Express-compatible router. Use mountHiyveRoutes for one-line setup.
const handlers = createHiyveHandlers(config);app.post('/api/generate-room-token', handlers.roomToken);app.get('/api/health', handlers.health); Copy
const handlers = createHiyveHandlers(config);app.post('/api/generate-room-token', handlers.roomToken);app.get('/api/health', handlers.health);
Create all Hiyve route handlers from a config.