mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 02:22:26 +08:00
10 lines
144 B
TypeScript
10 lines
144 B
TypeScript
![]() |
async function startElectron() {
|
||
|
await import("./electron-main.js");
|
||
|
}
|
||
|
|
||
|
async function main() {
|
||
|
await startElectron();
|
||
|
}
|
||
|
|
||
|
await main();
|