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

endpoints4s.algebra.server.ServerAssets.scala Maven / Gradle / Ivy

The newest version!
package endpoints4s.algebra.server

import endpoints4s.algebra.Assets

trait ServerAssets extends Assets {

  type AssetContent

  def notFoundAssetResponse: AssetResponse

  def foundAssetResponse(
      content: AssetContent,
      contentLength: Long,
      fileName: String,
      isGzipped: Boolean,
      isExpired: Boolean,
      lastModifiedSeconds: Long
  ): AssetResponse

  def noopAssetContent: AssetContent

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy