merge-requests/4/head
Matthew 2020-06-29 03:00:27 -04:00
parent cbb5c1585a
commit b15b7b514f
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
2 changed files with 219 additions and 220 deletions

View File

@ -5,10 +5,9 @@ import signale from 'signale';
import fs from 'fs-extra';
import config from '../config.json';
import CSCLI from '../cscli/main';
import { Server } from '../api';
import { Account, AccountInterface, Moderation, ModerationInterface, Domain, DomainInterface, Tier, TierInterface } from '../models';
import { emojis } from '../stores';
import { Command, Util, Collection } from '.';
import { Command, Util, Collection, Server } from '.';
import * as commands from '../commands';

View File

@ -3,7 +3,7 @@
import net from 'net';
import crypto from 'crypto';
import { promises as fs } from 'fs';
import Client from '../class/Client';
import { Client } from '../class';
import { dataConversion } from '../functions';
export default class CSCLI {