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.
17 lines
355 B
17 lines
355 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';
|
|
|
|
@Module({
|
|
imports: [],
|
|
controllers: [],
|
|
providers: [],
|
|
exports: [],
|
|
})
|
|
export class <%=properName%>Module {}
|
|
|
|
|