opencode_offline/packages/opencode/src/project/bootstrap.ts

18 lines
420 B
TypeScript
Raw Normal View History

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"
import { File } from "../file"
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()
File.init()
}