add fireflies sync

This commit is contained in:
Ramnique Singh 2026-01-07 13:56:10 +05:30
parent 361be9a6df
commit 6eb918f8d8
3 changed files with 701 additions and 0 deletions

View file

@ -5,6 +5,7 @@ import { fileURLToPath } from "node:url";
import { dirname } from "node:path";
import { init as initGmailSync } from "@x/core/dist/knowledge/sync_gmail.js";
import { init as initCalendarSync } from "@x/core/dist/knowledge/sync_calendar.js";
import { init as initFirefliesSync } from "@x/core/dist/knowledge/sync_fireflies.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
@ -50,6 +51,9 @@ app.whenReady().then(() => {
// start calendar sync
initCalendarSync();
// start fireflies sync
initFirefliesSync();
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();