mirror of
https://github.com/zadam/trilium.git
synced 2025-10-11 16:06:24 +08:00
9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
async function startElectron() {
|
|
await import("./electron-main.js");
|
|
}
|
|
|
|
async function main() {
|
|
await startElectron();
|
|
}
|
|
|
|
await main();
|