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
11
module/consts.mjs
Normal file
11
module/consts.mjs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export const __ID__ = `token-browser`;
|
||||
|
||||
/**
|
||||
* @param {string} path
|
||||
*/
|
||||
export function filePath(path) {
|
||||
if (path.startsWith(`/`)) {
|
||||
path = path.slice(1);
|
||||
};
|
||||
return `modules/${__ID__}/${path}`;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue