Skip to content

Commit

Permalink
feat: created default export for cart commands (#1475)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tolfx committed Jan 17, 2023
1 parent ff21907 commit d342506
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/classes/Commands/commands/cart/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import BuyAndSellCommand from './BuyAndSell';
import BuyCartCommand from './BuyCart';
import CancelCommand from './Cancel';
import CartCommand from './Cart';
import CheckoutCommand from './Checkout';
import ClearCartCommand from './ClearCart';
import SellCartCommand from './SellCart';

export default [
CartCommand,
CheckoutCommand,
SellCartCommand,
ClearCartCommand,
CancelCommand,
BuyCartCommand,
BuyAndSellCommand
];

0 comments on commit d342506

Please sign in to comment.