Archived
0
0
Fork 0

style: reorganized imports

This commit is contained in:
Daryl Ronningen 2021-06-21 16:17:11 -07:00
parent 42b13272e9
commit 5ce7664440
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B
2 changed files with 4 additions and 4 deletions

View file

@ -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';

View file

@ -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;