feat: add corestore service

This commit is contained in:
2026-05-02 15:01:41 +00:00
commit 29f0d94e86
15 changed files with 10113 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// native
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';
export { crypto, fs, http, path };
// @push.rocks scope
import * as projectinfo from '@push.rocks/projectinfo';
import * as smartpath from '@push.rocks/smartpath';
import * as smartstorage from '@push.rocks/smartstorage';
import * as smartdb from '@push.rocks/smartdb';
export { projectinfo, smartpath, smartstorage, smartdb };