feature: initial commit

This commit is contained in:
Andy Burke 2025-06-13 20:40:28 -07:00
commit ce024ba87a
17 changed files with 1141 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import * as asserts from '@std/assert';
Deno.test({
name: 'import fsdb',
permissions: {
env: true
},
fn: async () => {
const fsdb = await import('../fsdb.ts');
asserts.assert(fsdb);
}
});