forked from syntaxbullet/AuroraBot-discord
refactor: remove unused imports and types across trade and economy modules
This commit is contained in:
@@ -13,7 +13,6 @@ import {
|
||||
TextInputStyle,
|
||||
ThreadChannel,
|
||||
TextChannel,
|
||||
Colors
|
||||
} from "discord.js";
|
||||
import { TradeService } from "./trade.service";
|
||||
import { inventoryService } from "@/modules/inventory/inventory.service";
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import type { TradeSession, TradeParticipant, TradeState } from "./trade.types";
|
||||
import type { TradeSession, TradeParticipant } from "./trade.types";
|
||||
import { DrizzleClient } from "@/lib/DrizzleClient";
|
||||
import { economyService } from "@/modules/economy/economy.service";
|
||||
import { inventoryService } from "@/modules/inventory/inventory.service";
|
||||
import { itemTransactions, transactions } from "@/db/schema";
|
||||
import { itemTransactions } from "@/db/schema";
|
||||
|
||||
export class TradeService {
|
||||
private static sessions = new Map<string, TradeSession>();
|
||||
|
||||
Reference in New Issue
Block a user