Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilson Lau committed Dec 12, 2023
1 parent a3ff767 commit 4c3ef7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/controllers/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as fs from 'fs'
import { Body, Controller, File, Post } from 'amala'
import { fileTypeFromBuffer } from 'file-type'
import { setContentType } from '../helpers/contentTypes'
import backupCID from 'helpers/backupCID'
import backupCID from '../helpers/backupCID'
import ipfs from '../helpers/ipfs'

@Controller('/file')
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/resize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getCachedResize, setCachedResize } from '../helpers/resizedImageCache'
import { getContentType } from '../helpers/contentTypes'
import ResizeParams from '../validators/ResizeParams'
import ResizeQueryParams from '../validators/ResizeQueryParams'
import backupCID from 'helpers/backupCID'
import backupCID from '../helpers/backupCID'
import ipfs, { getDataFromIPFS } from '../helpers/ipfs'
import resizeImage from '../helpers/resizeImage'

Expand Down

0 comments on commit 4c3ef7e

Please sign in to comment.