Skip to content

Instantly share code, notes, and snippets.

@saeedhajinasiri
Created April 15, 2021 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saeedhajinasiri/a516ef0fa63fb3b1bc9091b4aa987e56 to your computer and use it in GitHub Desktop.
Save saeedhajinasiri/a516ef0fa63fb3b1bc9091b4aa987e56 to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { BooksController } from './books.controller';
import { BooksService } from './books.service';
@Module({
controllers: [BooksController],
providers: [BooksService]
})
export class BooksModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment