8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { PrintfulClient } from "@blade-and-brawn/commerce";
|
|
import { env } from "$env/dynamic/private";
|
|
|
|
export const printful = new PrintfulClient({
|
|
token: env.PRINTFUL_AUTH,
|
|
storeId: env.PRINTFUL_STORE_ID
|
|
});
|