Skip to content

Instantly share code, notes, and snippets.

@onwuvic
Created May 11, 2020 07:31
Show Gist options
  • Save onwuvic/bddc7e1155a37c5c091d5b6ae8deaabd to your computer and use it in GitHub Desktop.
Save onwuvic/bddc7e1155a37c5c091d5b6ae8deaabd to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { PostsController } from './posts.controller';
import { PostsService } from './posts.service';
@Module({
controllers: [PostsController],
providers: [PostsService],
})
export class PostsModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment