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

14 lines
308 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"
export async function InstanceBootstrap() {
await Plugin.init()
Share.init()
Format.init()
LSP.init()
Snapshot.init()
}