Add coffee caching

This commit is contained in:
2024-04-05 16:52:11 -06:00
parent e07f34137d
commit 73c91a7c63

View File

@@ -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(