All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sttp.tapir.Defaults.scala Maven / Gradle / Ivy

There is a newer version: 1.11.11
Show newest version
package sttp.tapir

import java.io.File

object Defaults {
  def createTempFile: () => TapirFile = () => File.createTempFile("tapir", "tmp")
  def deleteFile(): TapirFile => Unit = file => {
    val _ = file.delete()
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy