Skip to content

Instantly share code, notes, and snippets.

@royib
Created January 19, 2022 16:04
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 royib/30c99c861b87eb187a5b2cf9738e84bb to your computer and use it in GitHub Desktop.
Save royib/30c99c861b87eb187a5b2cf9738e84bb to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import {
BookController,
AuthorController,
GenreController,
} from './controllers';
import { DataServicesModule } from './services/data-services/data-services.module';
import { BookServicesModule } from './services/use-cases/book/book-services.module';
@Module({
imports: [
DataServicesModule,
BookServicesModule
],
controllers: [
BookController,
AuthorController,
GenreController,
],
providers: [],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment