Skip to content

Commit

Permalink
cleanup(ApImageService.ts): import
Browse files Browse the repository at this point in the history
  • Loading branch information
okayurisotto committed Jul 2, 2023
1 parent 41fe1b6 commit 1454d04
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/backend/src/core/activitypub/models/ApImageService.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { Inject, Injectable } from '@nestjs/common';
import { DI } from '@/di-symbols.js';
import type { DriveFilesRepository } from '@/models/index.js';
import type { Config } from '@/config.js';
import type { RemoteUser } from '@/models/entities/User.js';
import type { DriveFile } from '@/models/entities/DriveFile.js';
import { MetaService } from '@/core/MetaService.js';
import { truncate } from '@/misc/truncate.js';
import { DB_MAX_IMAGE_COMMENT_LENGTH } from '@/const.js';
import { DriveService } from '@/core/DriveService.js';
import { checkHttps } from '@/misc/check-https.js';
import type Logger from '@/logger.js';
import { DI } from '@/di-symbols.js';
import { bindThis } from '@/decorators.js';
import { checkHttps } from '@/misc/check-https.js';
import { ApResolverService } from '../ApResolverService.js';
import { ApLoggerService } from '../ApLoggerService.js';
import type { MetaService } from '@/core/MetaService.js';
import type { DriveService } from '@/core/DriveService.js';
import { DB_MAX_IMAGE_COMMENT_LENGTH } from '@/const.js';
import type { Config } from '@/config.js';
import type { IObject } from '../type.js';
import type { ApResolverService } from '../ApResolverService.js';
import type { ApLoggerService } from '../ApLoggerService.js';

@Injectable()
export class ApImageService {
Expand Down

0 comments on commit 1454d04

Please sign in to comment.