correct imports

This commit is contained in:
clauspeterhuebner 2026-01-30 00:06:32 +01:00
parent afa74f1b10
commit 5155578df7
2 changed files with 3 additions and 2 deletions

View File

@ -1,9 +1,10 @@
import { EncryptedTransferArgs, ensureUrlEndsWithSlash } from 'core' import { EncryptedTransferArgs } from '../../../graphql/model/EncryptedTransferArgs'
import { FederatedCommunity as DbFederatedCommunity } from 'database' import { FederatedCommunity as DbFederatedCommunity } from 'database'
import { GraphQLClient } from 'graphql-request' import { GraphQLClient } from 'graphql-request'
import { getLogger } from 'log4js' import { getLogger } from 'log4js'
import { LOG4JS_BASE_CATEGORY_NAME } from '../../../config/const' import { LOG4JS_BASE_CATEGORY_NAME } from '../../../config/const'
import { sendCommand } from './query/sendCommand' import { sendCommand } from './query/sendCommand'
import { ensureUrlEndsWithSlash } from '../../../util/utilities'
const logger = getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.federation.client.1_0.CommandClient`) const logger = getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.federation.client.1_0.CommandClient`)

View File

@ -39,7 +39,7 @@ import { fullName } from '../../util/utilities'
import { settlePendingSenderTransaction } from './settlePendingSenderTransaction' import { settlePendingSenderTransaction } from './settlePendingSenderTransaction'
import { storeForeignUser } from './storeForeignUser' import { storeForeignUser } from './storeForeignUser'
import { storeLinkAsRedeemed } from './storeLinkAsRedeemed' import { storeLinkAsRedeemed } from './storeLinkAsRedeemed'
import { V1_0_CommandClient } from '../..' import { CommandClient as V1_0_CommandClient } from '../../federation/client/1_0/CommandClient'
import { SendEmailCommand } from '../../command/commands/SendEmailCommand' import { SendEmailCommand } from '../../command/commands/SendEmailCommand'
const createLogger = (method: string) => const createLogger = (method: string) =>