diff --git a/src/fococoffee/fococoffee.controller.ts b/src/fococoffee/fococoffee.controller.ts index 17facf2..7e254cf 100644 --- a/src/fococoffee/fococoffee.controller.ts +++ b/src/fococoffee/fococoffee.controller.ts @@ -1,12 +1,14 @@ -import { Controller, Get } from '@nestjs/common'; +import { Controller, Get, UseInterceptors } from '@nestjs/common'; import { HarbingerService } from './harbinger.service'; import { FocoCoffeeService } from './fococoffee.service'; import { LimaService } from './lima.service'; import { BindleService } from './bindle.service'; import { ApiResponse, ApiTags } from '@nestjs/swagger'; +import { CacheInterceptor } from '@nestjs/cache-manager'; @Controller('fococoffee') @ApiTags('fococoffee') +@UseInterceptors(CacheInterceptor) export class FocoCoffeeController { constructor(