some more cart infrastructure

This commit is contained in:
dylan
2023-05-02 17:06:54 -07:00
parent a7b675d541
commit fdc8f97aee
7 changed files with 61 additions and 57 deletions

11
cart.ts Normal file
View File

@ -0,0 +1,11 @@
import fakeCart from "./cart_unpacked.json" assert { type: "json" };
const cart = fakeCart;
export const loadCart = (_name: string) => {
return;
}
export const getCart = () => {
return cart;
}