mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-25 18:55:19 +02:00
add fireflies sync
This commit is contained in:
parent
361be9a6df
commit
6eb918f8d8
3 changed files with 701 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue