feat(app): add chats route

This commit is contained in:
ItzCrazyKns 2024-06-29 11:09:13 +05:30
parent 93b90dc1c4
commit d806c7e581
No known key found for this signature in database
GPG key ID: 8162927C7CCE3065
2 changed files with 47 additions and 0 deletions

View file

@ -4,6 +4,7 @@ import videosRouter from './videos';
import configRouter from './config';
import modelsRouter from './models';
import suggestionsRouter from './suggestions';
import chatsRouter from './chats';
const router = express.Router();
@ -12,5 +13,6 @@ router.use('/videos', videosRouter);
router.use('/config', configRouter);
router.use('/models', modelsRouter);
router.use('/suggestions', suggestionsRouter);
router.use('/chats', chatsRouter);
export default router;