spring-web-modules/api/src/main/kotlin/com/cubetiqs/web/modules/file/FileStorageProvider.kt

9 lines
210 B
Kotlin
Raw Normal View History

package com.cubetiqs.web.modules.file
import java.io.File
interface FileStorageProvider {
fun store(file: File): FileResponse
fun get(fileName: String): FileResponse
fun delete(fileName: String)
}