Add junk-drawer history by IP

This commit is contained in:
2024-10-30 10:21:38 -06:00
parent c854a1540a
commit 3df355f045
8 changed files with 79 additions and 7 deletions

View File

@@ -2,9 +2,10 @@ import { Module } from '@nestjs/common';
import { ParkioService } from './parkio.service';
import { ParkioController } from './parkio.controller';
import { IswordService } from 'src/isword/isword.service';
import { CacheModule } from '@nestjs/cache-manager';
@Module({
providers: [ParkioService, IswordService],
controllers: [ParkioController]
controllers: [ParkioController],
})
export class ParkioModule {}