Skip to content

Commit

Permalink
style :: 주석제거 & 띄어쓰기
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Feb 27, 2024
1 parent eb6543d commit 33d37ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
package com.example.mergebackend.domain.file.presentation

import com.example.mergebackend.domain.file.service.FileService
import org.springframework.http.HttpHeaders
import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.*
import org.springframework.web.multipart.MultipartFile

@RestController
@RequestMapping("/file")
class FileController (
private val fileService: FileService
private val fileService: FileService
){
@PostMapping("/upload")
fun uploadMultipleFile(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,4 @@ class FileServiceImpl(
throw ImageDeleteFailException
}
}

// override fun download(projectNameEn: String, fileName: String): Resource {
// val fileKey = s3Property.dir + "$projectNameEn/" + fileName
// val s3Object = s3Client.getObject(GetObjectRequest(s3Property.bucket, fileKey))
// return InputStreamResource(s3Object.objectContent)
// }
}

0 comments on commit 33d37ab

Please sign in to comment.