abyss-ai
Version:
Autonomous AI coding agent - enhanced OpenCode with autonomous capabilities
19 lines (16 loc) • 477 B
text/typescript
import { App } from "../app/app"
import { ConfigHooks } from "../config/hooks"
import { Format } from "../format"
import { LSP } from "../lsp"
import { Share } from "../share/share"
import { Snapshot } from "../snapshot"
export async function bootstrap<T>(input: App.Input, cb: (app: App.Info) => Promise<T>) {
return App.provide(input, async (app) => {
Share.init()
Format.init()
ConfigHooks.init()
LSP.init()
Snapshot.init()
return cb(app)
})
}