style: reorganized imports
This commit is contained in:
parent
42b13272e9
commit
5ce7664440
2 changed files with 4 additions and 4 deletions
|
@ -14,9 +14,9 @@
|
|||
* You should have received a copy of the GNU General Public License
|
||||
* along with ArgonBot. If not, see <https: //www.gnu.org/licenses/>.
|
||||
*/
|
||||
import { NodeVM } from 'vm2';
|
||||
import { transpile } from 'typescript';
|
||||
import Command from '@structures/command';
|
||||
import { transpile } from 'typescript';
|
||||
import { NodeVM } from 'vm2';
|
||||
|
||||
import type { Client, Message } from 'discord.js';
|
||||
|
||||
|
|
|
@ -14,11 +14,11 @@
|
|||
* You should have received a copy of the GNU General Public License
|
||||
* along with ArgonBot. If not, see <https: //www.gnu.org/licenses/>.
|
||||
*/
|
||||
import path from 'path';
|
||||
import type { ICommandOptions } from '@utils/types';
|
||||
import config from 'config';
|
||||
import path from 'path';
|
||||
|
||||
import type { Client, Message } from 'discord.js';
|
||||
import type { ICommandOptions } from '@utils/types';
|
||||
|
||||
export default abstract class Command {
|
||||
public readonly client: Client;
|
||||
|
|
Reference in a new issue