chore(root): clean up unused stuff
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user