mirror of
https://gitlab.com/qwerinope/qweribot.git
synced 2026-02-04 15:26:58 +01:00
make all imports nicer
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import { Command, sendMessage } from ".";
|
||||
import { getUserRecord } from "../db/dbUser";
|
||||
import parseCommandArgs from "../lib/parseCommandArgs";
|
||||
import { User } from "../user";
|
||||
import { timeout } from "../lib/timeout";
|
||||
import { changeBalance } from "../lib/changeBalance";
|
||||
import { createTimeoutRecord } from "../db/dbTimeouts";
|
||||
import { Command, sendMessage } from "commands";
|
||||
import { getUserRecord } from "db/dbUser";
|
||||
import parseCommandArgs from "lib/parseCommandArgs";
|
||||
import User from "user";
|
||||
import { timeout } from "lib/timeout";
|
||||
import { changeBalance } from "lib/changeBalance";
|
||||
import { createTimeoutRecord } from "db/dbTimeouts";
|
||||
|
||||
export default new Command('timeout', ['timeout'], 'chatter', async (msg, user) => {
|
||||
const userObj = await getUserRecord(user);
|
||||
|
||||
Reference in New Issue
Block a user