mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-24 03:26:39 +00:00
14 lines
318 B
TypeScript
14 lines
318 B
TypeScript
import { MessageHandler } from "@server/routers/ws";
|
|
|
|
export async function flushConnectionLogToDb(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
export async function cleanUpOldLogs(orgId: string, retentionDays: number) {
|
|
return;
|
|
}
|
|
|
|
export const handleConnectionLogMessage: MessageHandler = async (context) => {
|
|
return;
|
|
};
|