Files
stats/packages/db/src/buffers/index.ts
2024-09-12 20:51:54 +02:00

8 lines
277 B
TypeScript

import { BotBuffer } from './bot-buffer';
import { EventBuffer } from './event-buffer';
import { ProfileBuffer } from './profile-buffer';
export const eventBuffer = new EventBuffer();
export const profileBuffer = new ProfileBuffer();
export const botBuffer = new BotBuffer();