summaryrefslogtreecommitdiffhomepage
path: root/packages/storage-sqlite/src/extension.ts
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-06-27 01:09:39 +0900
committerAdam Malczewski <[email protected]>2026-06-27 01:09:39 +0900
commit61e45e60d699ed1ca46f94a8f181c92a940317c6 (patch)
tree2892d9773c5a8e367e1e58cdb1e88d9c6ad3fe6d /packages/storage-sqlite/src/extension.ts
parent63c7e64532e85e0bbdd6d9ac6825d8f86be98e7a (diff)
parent727c98c9dae516a2070eb950410314380a20c974 (diff)
downloaddispatch-61e45e60d699ed1ca46f94a8f181c92a940317c6.tar.gz
dispatch-61e45e60d699ed1ca46f94a8f181c92a940317c6.zip
Merge branch 'feature/indent-change' into dev
Diffstat (limited to 'packages/storage-sqlite/src/extension.ts')
-rw-r--r--packages/storage-sqlite/src/extension.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/storage-sqlite/src/extension.ts b/packages/storage-sqlite/src/extension.ts
index 32297e5..cbf2ec0 100644
--- a/packages/storage-sqlite/src/extension.ts
+++ b/packages/storage-sqlite/src/extension.ts
@@ -1,17 +1,17 @@
import type { Extension, HostAPI, Manifest } from "@dispatch/kernel";
export const manifest: Manifest = {
- id: "storage-sqlite",
- name: "SQLite Storage Backend",
- version: "0.0.0",
- apiVersion: "^0.1.0",
- trust: "bundled",
- capabilities: { db: true },
- activation: "eager",
+ id: "storage-sqlite",
+ name: "SQLite Storage Backend",
+ version: "0.0.0",
+ apiVersion: "^0.1.0",
+ trust: "bundled",
+ capabilities: { db: true },
+ activation: "eager",
};
export const extension: Extension = {
- manifest,
- // No-op: the SQLite backend is a kernel bootstrap dep injected via HostDeps.storageFactory, not a bus service.
- activate: async (_host: HostAPI) => {},
+ manifest,
+ // No-op: the SQLite backend is a kernel bootstrap dep injected via HostDeps.storageFactory, not a bus service.
+ activate: async (_host: HostAPI) => {},
};