summaryrefslogtreecommitdiffhomepage
path: root/packages/kernel/src/index.ts
blob: fc5d1ab1a05e5c1222869901e7945decc8c37382 (plain)
1
2
3
4
5
6
7
8
9
// @dispatch/kernel — the minimal runtime core.
//
// Exposes the ABI (contracts) that every extension and the runtime compile
// against, plus kernel implementations (bus, host, runtime) as they land.

export * from "./bus/index.js";
export * from "./contracts/index.js";
export * from "./host/index.js";
export * from "./runtime/index.js";