Some cleanup

This commit is contained in:
Dominic Ferrando
2025-06-14 16:20:53 -04:00
parent 08bd10968b
commit 7ae38c81e7
3 changed files with 15 additions and 18 deletions
+2 -1
View File
@@ -5,7 +5,7 @@ interface ProductRecord {
printfulProductId: number;
}
export class ProductRecords {
class ProductRecords {
private db: Database;
constructor() {
@@ -56,3 +56,4 @@ export class ProductRecords {
}
}
export const productRecords = new ProductRecords();