UNPKG

skailan-ai

Version:

Servicio de IA y procesamiento de lenguaje natural para Skailan

7 lines 337 B
import { Router } from 'express'; import { analyzeSentiment, analyzeConversationSentiment } from '../controllers/sentimentController'; const router = Router(); router.post('/analyze', analyzeSentiment); router.post('/analyze-conversation', analyzeConversationSentiment); export default router; //# sourceMappingURL=sentimentRoutes.js.map