Add first iteration of the Image DB editor
This commit is contained in:
parent
773c506570
commit
c7c02702d7
13 changed files with 425 additions and 7 deletions
|
|
@ -1,17 +1,20 @@
|
|||
// Applications
|
||||
import { ArtistApp } from "./apps/Artist.mjs";
|
||||
import { ImageApp } from "./apps/Image.mjs";
|
||||
|
||||
// Utils
|
||||
import { getFile, lastModifiedAt, uploadJson } from "./utils/fs.mjs";
|
||||
import { getFile, hashFile, lastModifiedAt, uploadJson } from "./utils/fs.mjs";
|
||||
|
||||
const { deepFreeze } = foundry.utils;
|
||||
|
||||
export const api = deepFreeze({
|
||||
Apps: {
|
||||
ArtistApp,
|
||||
ImageApp,
|
||||
},
|
||||
utils: {
|
||||
fs: {
|
||||
hashFile,
|
||||
lastModifiedAt,
|
||||
getFile,
|
||||
uploadJson,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue