move artigen embeds into artigen's utils folder
This commit is contained in:
parent
7ba6da1404
commit
5d1d39bebf
|
@ -9,13 +9,12 @@ import { SolvedRoll } from 'artigen/artigen.d.ts';
|
|||
import { removeWorker } from 'artigen/managers/countManager.ts';
|
||||
import { QueuedRoll } from 'artigen/managers/manager.d.ts';
|
||||
|
||||
import { generateCountDetailsEmbed, generateDMFailed, generateRollEmbed } from 'artigen/utils/embeds.ts';
|
||||
import { loggingEnabled } from 'artigen/utils/logFlag.ts';
|
||||
|
||||
import dbClient from 'db/client.ts';
|
||||
import { queries } from 'db/common.ts';
|
||||
|
||||
import { generateCountDetailsEmbed, generateDMFailed, generateRollEmbed } from 'embeds/artigen.ts';
|
||||
|
||||
import stdResp from 'endpoints/stdResponses.ts';
|
||||
|
||||
import utils from 'utils/utils.ts';
|
||||
|
|
|
@ -5,7 +5,7 @@ import { RollModifiers } from 'artigen/dice/dice.d.ts';
|
|||
import { removeWorker } from 'artigen/managers/countManager.ts';
|
||||
import { QueuedRoll } from 'artigen/managers/manager.d.ts';
|
||||
|
||||
import { generateRollEmbed } from 'embeds/artigen.ts';
|
||||
import { generateRollEmbed } from 'artigen/utils/embeds.ts';
|
||||
|
||||
import stdResp from 'endpoints/stdResponses.ts';
|
||||
|
||||
|
|
|
@ -6,7 +6,8 @@ import { getWorkerCnt } from 'artigen/managers/countManager.ts';
|
|||
import { QueuedRoll } from 'artigen/managers/manager.d.ts';
|
||||
import { handleRollRequest } from 'artigen/managers/workerManager.ts';
|
||||
|
||||
import { rollingEmbed } from 'embeds/artigen.ts';
|
||||
import { rollingEmbed } from 'artigen/utils/embeds.ts';
|
||||
|
||||
import { infoColor2 } from 'embeds/colors.ts';
|
||||
|
||||
import utils from 'utils/utils.ts';
|
||||
|
|
|
@ -8,10 +8,11 @@ import { getModifiers } from 'artigen/dice/getModifiers.ts';
|
|||
|
||||
import { sendRollRequest } from 'artigen/managers/queueManager.ts';
|
||||
|
||||
import { generateRollError, rollingEmbed } from 'artigen/utils/embeds.ts';
|
||||
|
||||
import dbClient from 'db/client.ts';
|
||||
import { queries } from 'db/common.ts';
|
||||
|
||||
import { generateRollError, rollingEmbed } from 'embeds/artigen.ts';
|
||||
import { warnColor } from 'embeds/colors.ts';
|
||||
|
||||
import utils from 'utils/utils.ts';
|
||||
|
|
Loading…
Reference in New Issue