make all imports nicer

This commit is contained in:
2025-07-24 14:22:28 +01:00
parent d07b9cf290
commit 1321af66cd
62 changed files with 242 additions and 227 deletions

View File

@@ -1,11 +1,11 @@
import { changeItemCount, Item } from ".";
import { sendMessage } from "../commands";
import { createTimeoutRecord } from "../db/dbTimeouts";
import { createUsedItemRecord } from "../db/dbUsedItems";
import { getUserRecord } from "../db/dbUser";
import parseCommandArgs from "../lib/parseCommandArgs";
import { timeout } from "../lib/timeout";
import { User } from "../user";
import { changeItemCount, Item } from "items";
import { sendMessage } from "commands";
import { createTimeoutRecord } from "db/dbTimeouts";
import { createUsedItemRecord } from "db/dbUsedItems";
import { getUserRecord } from "db/dbUser";
import parseCommandArgs from "lib/parseCommandArgs";
import { timeout } from "lib/timeout";
import User from "user";
const ITEMNAME = 'silverbullet';