Commit 616eeb79 authored by nanahira's avatar nanahira

fix class filename

parent 098e1d4d
Pipeline #14467 passed with stages
in 3 minutes and 11 seconds
...@@ -16,7 +16,7 @@ import { UpdateController } from './update/update.controller'; ...@@ -16,7 +16,7 @@ import { UpdateController } from './update/update.controller';
import { UpdateService } from './update/update.service'; import { UpdateService } from './update/update.service';
import { ServeStaticModule } from '@nestjs/serve-static'; import { ServeStaticModule } from '@nestjs/serve-static';
import path from 'path'; import path from 'path';
import { ArchiveMirror } from './entities/ArchiveMirror.dto'; import { ArchiveMirror } from './entities/ArchiveMirror.entity';
import { MirrorService } from './mirror/mirror.service'; import { MirrorService } from './mirror/mirror.service';
import { HttpModule } from '@nestjs/axios'; import { HttpModule } from '@nestjs/axios';
import { RedisModule } from '@nestjs-modules/ioredis'; import { RedisModule } from '@nestjs-modules/ioredis';
......
import { Column, Entity, Index, ManyToOne, PrimaryGeneratedColumn } from 'typeorm'; import { Column, Entity, Index, ManyToOne, PrimaryGeneratedColumn } from 'typeorm';
import { Build } from './Build.entity'; import { Build } from './Build.entity';
import { TimeBase } from './TimeBase.entity'; import { TimeBase } from './TimeBase.entity';
import { ArchiveMirror } from './ArchiveMirror.dto'; import { ArchiveMirror } from './ArchiveMirror.entity';
export enum ArchiveType { export enum ArchiveType {
Full = 'full', Full = 'full',
......
...@@ -6,7 +6,7 @@ import { HttpService } from '@nestjs/axios'; ...@@ -6,7 +6,7 @@ import { HttpService } from '@nestjs/axios';
import { lastValueFrom } from 'rxjs'; import { lastValueFrom } from 'rxjs';
import { ReturnMessage } from '../dto/ReturnMessage.dto'; import { ReturnMessage } from '../dto/ReturnMessage.dto';
import { Archive } from '../entities/Archive.entity'; import { Archive } from '../entities/Archive.entity';
import { ArchiveMirror } from '../entities/ArchiveMirror.dto'; import { ArchiveMirror } from '../entities/ArchiveMirror.entity';
import { PackageS3Service } from '../package-s3/package-s3.service'; import { PackageS3Service } from '../package-s3/package-s3.service';
import _ from 'lodash'; import _ from 'lodash';
import delay from 'delay'; import delay from 'delay';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment