summaryrefslogtreecommitdiffhomepage
path: root/packages/kernel/src/index.ts
blob: 71a9d117f16324dddda2bdf8c35d886157637fe8 (plain)
1
2
3
4
5
6
7
8
9
10
// @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 "./logging/index.js";
export * from "./runtime/index.js";