diff options
| author | Adam Malczewski <[email protected]> | 2026-06-26 22:03:19 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-26 22:23:39 +0900 |
| commit | 727c98c9dae516a2070eb950410314380a20c974 (patch) | |
| tree | 52aa1022c54f11770be7e4e2a324f0a8b8b8deec /packages/storage-sqlite/src/extension.ts | |
| parent | e59dc11f63b1df51142259bb2c406af8c9c8c2bb (diff) | |
| download | dispatch-727c98c9dae516a2070eb950410314380a20c974.tar.gz dispatch-727c98c9dae516a2070eb950410314380a20c974.zip | |
style: switch from tabs to 2-space indentation
Diffstat (limited to 'packages/storage-sqlite/src/extension.ts')
| -rw-r--r-- | packages/storage-sqlite/src/extension.ts | 20 |
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) => {}, }; |
