change paths for cardstack types

This commit is contained in:
bignutty 2025-02-14 21:42:54 +01:00
parent 1afe082d92
commit 17964ce5cb
7 changed files with 81 additions and 38 deletions

View file

@ -1,8 +1,8 @@
const { DynamicCardStack } = require("./DynamicCardStack");
const { DynamicCardStack } = require("./stack");
module.exports = {
createDynamicCardStack: (context, options)=>{
return new DynamicCardStack(context, options)
},
CARD_STACK_CONSTANTS: require("./Constants"),
CARD_STACK_CONSTANTS: require("./constants"),
}