items part 1

This commit is contained in:
stjet
2024-08-06 08:06:31 +00:00
parent 9226debee2
commit 38c2700c2f
16 changed files with 429 additions and 26 deletions

View File

@@ -4,7 +4,7 @@ import type { CommandData } from "./index";
import type { User } from "../db";
import config from "../config.json";
import { get_user, add_balance, sub_balance } from "../db";
import { BotError } from "./error";
import { BotError } from "./common/error";
async function run(interaction: ChatInputCommandInteraction, user: User) {
const options = interaction.options;
@@ -31,4 +31,3 @@ const data: CommandData = {
export default data;