Skip to content

Instantly share code, notes, and snippets.

@ggallovalle
ggallovalle / router-module.ts
Created May 14, 2021 09:18
Nestjs new Router Module
// router.module.ts
const routes: Routes = [
{
path: '/company',
module: CompanyModule,
children: [
{
path: '/:company/subcompany',
module: SubCompanyModule,
children: [