Yield generated for aefb9fc2-2ae0-44db-bd58-7fb041b08d16
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
405 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 {}