Question from the Nest.js test

Given a Nest.js module, determine if the module declares a controller to manage requests associated with the module.

Easy

Consider the following code from a Nest.js module:

@Module({
  imports: [],
  controllers: [ProductsController],
  providers: [ProductsService],
})
export class ProductsModule {}

Which of the following statements is true about this code?

Author: AxelStatus: PublishedQuestion passed 15 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!