First commit

This commit is contained in:
2021-04-15 15:08:54 -07:00
commit 2ccebf13b8
39 changed files with 26887 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import * as Comlink from "comlink";
function add(a, b) {
return a + b;
}
function importComicBooks() {
// 1. Walk the folder structure
// 2. Scan for .cbz, .cbr
// 3. extract cover image
// 4. Calculate image hash
// 5. Get metadata, add to data model
// 5. Save cover to disk
// 6. Save model to mongo
}
Comlink.expose({
add,
});
export default null as any;