aboutsummaryrefslogtreecommitdiff
path: root/src/data/cardDb.js
blob: f3f5635b9c975620926f3b42c14659b24d2162fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let cardDb = {};

function setCardDb(d) {
    cardDb = d;
}

function getCardDb() {
    return cardDb;
}

export {
    getCardDb,
    setCardDb,
};