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

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

The newest version!
package sttp.tapir

import java.io.File

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy