Remove unnecessary shutdown handlers

Daemon runs forever; launchd manages lifecycle. SQLite handles
ungraceful shutdowns fine.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gavrielc
2026-01-31 19:21:59 +02:00
parent 0691601469
commit 545cbc7b9c
2 changed files with 1 additions and 13 deletions

View File

@@ -32,10 +32,6 @@ export function initDatabase(): void {
`);
}
export function closeDatabase(): void {
db.close();
}
export function storeMessage(msg: proto.IWebMessageInfo, chatJid: string, isFromMe: boolean): void {
if (!msg.key) return;