chore(root): clean up unused stuff

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-02-10 20:24:26 +01:00
parent fe14163fd6
commit 0cf73e299a
9 changed files with 89 additions and 870 deletions

View File

@@ -5,12 +5,6 @@ import { EventBuffer as EventBufferRedis } from './event-buffer-redis';
import { ProfileBuffer as ProfileBufferPsql } from './profile-buffer-psql';
import { ProfileBuffer as ProfileBufferRedis } from './profile-buffer-redis';
export const eventBuffer = process.env.USE_NEW_BUFFER
? new EventBufferRedis()
: new EventBufferPsql();
export const profileBuffer = process.env.USE_NEW_BUFFER
? new ProfileBufferRedis()
: new ProfileBufferPsql();
export const botBuffer = process.env.USE_NEW_BUFFER
? new BotBufferRedis()
: new BotBufferPsql();
export const eventBuffer = new EventBufferRedis();
export const profileBuffer = new ProfileBufferRedis();
export const botBuffer = new BotBufferRedis();