Yield generated for 82800a30-2dfc-438c-9ef3-f37935d3f4e3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
387 B

---
to: src/modules/<%=h.changeCase.param(name)%>/<%=h.changeCase.param(name)%>.module.ts
---
<%
properName = h.changeCase.pascal(name);
kebabName = h.changeCase.param(name);
%>import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
@Module({
imports: [],
controllers: [],
providers: [],
exports: [],
})
export class <%=properName%>Module {}