Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
dariober committed Feb 3, 2025
1 parent eb64e26 commit 0c1cdac
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import {
ExportDocument,
Feature,
FeatureDocument,
File,
FileDocument,
RefSeq,
RefSeqChunk,
Expand All @@ -36,7 +37,6 @@ import { Injectable, Logger, NotFoundException } from '@nestjs/common'
import { InjectModel } from '@nestjs/mongoose'
import { FilterQuery, Model } from 'mongoose'
import StreamConcat from 'stream-concat'
import { FilesService } from 'src/files/files.service'
import { createReadStream } from 'node:fs'
import { ConfigService } from '@nestjs/config'
import path from 'node:path'
Expand Down Expand Up @@ -127,7 +127,6 @@ export class ExportService {
private readonly featureModel: Model<FeatureDocument>,
@InjectModel(File.name)
private readonly fileModel: Model<FileDocument>,
private readonly filesService: FilesService,
@InjectModel(RefSeq.name)
private readonly refSeqModel: Model<RefSeqDocument>,
@InjectModel(RefSeqChunk.name)
Expand Down

0 comments on commit 0c1cdac

Please sign in to comment.