summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/ChannelFollowingService.ts
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-06-06 12:26:43 -0400
committerHazelnoot <acomputerdog@gmail.com>2025-06-09 11:02:36 -0400
commit0c84d73294cb85a2126696abadb37003f3c08d7b (patch)
treeddd9986c9010d79f2e5aa9520bfe67f8f20c38c2 /packages/backend/src/core/ChannelFollowingService.ts
parentdisable caches in unit tests (diff)
downloadsharkey-0c84d73294cb85a2126696abadb37003f3c08d7b.tar.gz
sharkey-0c84d73294cb85a2126696abadb37003f3c08d7b.tar.bz2
sharkey-0c84d73294cb85a2126696abadb37003f3c08d7b.zip
move QuantumKVCache to a separate file
Diffstat (limited to 'packages/backend/src/core/ChannelFollowingService.ts')
-rw-r--r--packages/backend/src/core/ChannelFollowingService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/ChannelFollowingService.ts b/packages/backend/src/core/ChannelFollowingService.ts
index 26b023179c..430711fef1 100644
--- a/packages/backend/src/core/ChannelFollowingService.ts
+++ b/packages/backend/src/core/ChannelFollowingService.ts
@@ -12,7 +12,7 @@ import { IdService } from '@/core/IdService.js';
import { GlobalEvents, GlobalEventService, InternalEventTypes } from '@/core/GlobalEventService.js';
import { bindThis } from '@/decorators.js';
import type { MiLocalUser } from '@/models/User.js';
-import { QuantumKVCache, RedisKVCache } from '@/misc/cache.js';
+import { QuantumKVCache } from '@/misc/QuantumKVCache.js';
import { InternalEventService } from './InternalEventService.js';
@Injectable()