import fakeCart from "./cart_unpacked.json" assert { type: "json" };
import { Sheet } from "./sheet.ts";

const cart = fakeCart as Array<Sheet>;

export const loadCart = (_name: string) => {
	return;
}

export const getCart = () => {
	return cart;
}