Refactor armoire content to be cached by day

This commit is contained in:
Phillip Thelen
2024-05-15 16:51:09 +02:00
parent 46d164ddd1
commit 4d38880249
17 changed files with 198 additions and 97 deletions

View File

@@ -2,13 +2,15 @@ import { body as baseBody } from './sets/base';
import { body as mysteryBody } from './sets/mystery';
import { body as specialBody } from './sets/special';
import { body as armoireBody } from './sets/armoire';
import armoire from './sets/armoire';
const body = {
base: baseBody,
mystery: mysteryBody,
special: specialBody,
armoire: armoireBody,
get armoire () {
return armoire.body;
},
};
export default body;