diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-22 18:18:41 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-22 18:18:41 +0200 |
commit | 61fd38d6d9170a9583c62366a2d4afa40507ce01 (patch) | |
tree | 50132ae08fb39b453bca0dbeeae311e12b2528ed /src/patcher.ts | |
parent | a7dbd73547104540218d4699fcf643fca727d2fc (diff) | |
download | Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.tar.gz Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.tar.bz2 Vencord-61fd38d6d9170a9583c62366a2d4afa40507ce01.zip |
style: Sort imports
Diffstat (limited to 'src/patcher.ts')
-rw-r--r-- | src/patcher.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/patcher.ts b/src/patcher.ts index 14f0812..542fba5 100644 --- a/src/patcher.ts +++ b/src/patcher.ts @@ -17,11 +17,12 @@ */ import electron, { app, BrowserWindowConstructorOptions } from "electron"; +import { readFileSync } from "fs"; import { dirname, join } from "path"; + import { initIpc } from "./ipcMain"; import { installExt } from "./ipcMain/extensions"; import { readSettings } from "./ipcMain/index"; -import { readFileSync } from "fs"; console.log("[Vencord] Starting up..."); |