-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Update imports and class names in ipfs_model_manager.js
- Loading branch information
1 parent
890bc19
commit 581a0bf
Showing
8 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './main.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export class FireproofKitJs { | ||
constructor() { | ||
} | ||
|
||
async init() { | ||
this.test(); | ||
console.log("FireproofKit.init()"); | ||
return null; | ||
} | ||
|
||
async test() { | ||
console.error("method not implemented"); | ||
throw new Error("method not implemented"); | ||
} | ||
} | ||
|
||
export default FireproofKitJs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "@endomorphosis/fireproofdb_kit_js", | ||
"version": "1.0.0", | ||
"description": "a bridge for fireproofdb", | ||
"type": "module", | ||
"main": "main.js", | ||
"scripts": { | ||
"test": "node tests/test.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/endomorphosis/fireproofdb_kit_js.git" | ||
}, | ||
"dependencies": { | ||
}, | ||
"author": "Benjamin Barber", | ||
"license": "AGPL-3.0-only", | ||
"bugs": { | ||
"url": "https://github.com/endomorphosis/fireproofdb_kit_js/issues" | ||
}, | ||
"homepage": "https://github.com/endomorphosis/fireproofdb_kit_js#readme" | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from 'main.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export class storachaKitJs { | ||
constructor() { | ||
} | ||
|
||
async init() { | ||
this.test(); | ||
console.log("storachaKitJs.init()"); | ||
return null; | ||
} | ||
|
||
async test() { | ||
console.error("method not implemented"); | ||
throw new Error("method not implemented"); | ||
} | ||
} | ||
|
||
export default storachaKitJs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "@endomorphosis/storacha_kit_js", | ||
"version": "1.0.0", | ||
"description": "a bridge for storacha", | ||
"type": "module", | ||
"main": "main.js", | ||
"scripts": { | ||
"test": "node tests/test.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/endomorphosis/storacha_kit_js.git" | ||
}, | ||
"dependencies": { | ||
}, | ||
"author": "Benjamin Barber", | ||
"license": "AGPL-3.0-only", | ||
"bugs": { | ||
"url": "https://github.com/endomorphosis/fireproofdb_kit_js/issues" | ||
}, | ||
"homepage": "https://github.com/endomorphosis/fireproofdb_kit_js#readme" | ||
} |
Empty file.