2025-09-19 17:11:29 +08:00
|
|
|
import { Plugin } from "../plugin"
|
|
|
|
|
import { Share } from "../share/share"
|
|
|
|
|
import { Format } from "../format"
|
|
|
|
|
import { LSP } from "../lsp"
|
|
|
|
|
import { Snapshot } from "../snapshot"
|
2025-09-19 18:13:45 +08:00
|
|
|
import { FileWatcher } from "../file/watcher"
|
2025-10-02 12:18:11 +08:00
|
|
|
import { File } from "../file"
|
2025-09-19 17:11:29 +08:00
|
|
|
|
|
|
|
|
export async function InstanceBootstrap() {
|
|
|
|
|
await Plugin.init()
|
|
|
|
|
Share.init()
|
|
|
|
|
Format.init()
|
|
|
|
|
LSP.init()
|
|
|
|
|
Snapshot.init()
|
2025-09-19 18:13:45 +08:00
|
|
|
FileWatcher.init()
|
2025-10-02 12:18:11 +08:00
|
|
|
File.init()
|
2025-09-19 17:11:29 +08:00
|
|
|
}
|