Skip to content

Commit

Permalink
backend: Modularized project
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Aug 12, 2024
1 parent dec5c47 commit 0a5d19b
Show file tree
Hide file tree
Showing 12 changed files with 141 additions and 842 deletions.
19 changes: 19 additions & 0 deletions openvidu-call-back/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Exportar todos los routers
export * from './src/routes/index.js';

// Exportar todos los controladores
export * from './src/controllers/index.js';

// Exportar todos los servicios
export * from './src/services/index.js';

// Exportar todos los modelos
export * from './src/models/index.js';

// Exportar todos los helpers
export * from './src/helpers/index.js';

// Exportar la app si es necesario
// import app from './src/server.js';
// export { app };
export * from './src/server.js';
Loading

0 comments on commit 0a5d19b

Please sign in to comment.