feat: add corestore volume driver

This commit is contained in:
2026-05-02 18:58:21 +00:00
parent 29f0d94e86
commit 02d1b77ae8
6 changed files with 644 additions and 7 deletions
+8 -1
View File
@@ -1,10 +1,12 @@
// native
import * as childProcess from 'node:child_process';
import * as crypto from 'node:crypto';
import * as fs from 'node:fs/promises';
import * as http from 'node:http';
import * as path from 'node:path';
import * as streamPromises from 'node:stream/promises';
export { crypto, fs, http, path };
export { childProcess, crypto, fs, http, path, streamPromises };
// @push.rocks scope
import * as projectinfo from '@push.rocks/projectinfo';
@@ -13,3 +15,8 @@ import * as smartstorage from '@push.rocks/smartstorage';
import * as smartdb from '@push.rocks/smartdb';
export { projectinfo, smartpath, smartstorage, smartdb };
// @serve.zone scope
import * as containerarchive from '@serve.zone/containerarchive';
export { containerarchive };