Get the module foundations and the Artist app created
This commit is contained in:
parent
8744b6c562
commit
ffa2162fbd
20 changed files with 590 additions and 0 deletions
20
module/api.mjs
Normal file
20
module/api.mjs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
// 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,
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue