// Applications import { ArtistApp } from "./apps/Artist.mjs"; // Utils import { getFile, lastModifiedAt, uploadJson } from "./utils/fs.mjs"; const { deepFreeze } = foundry.utils; export const api = deepFreeze({ Apps: { ArtistApp, }, utils: { fs: { lastModifiedAt, getFile, uploadJson, }, }, });