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

endpoints.algebra.Methods.scala Maven / Gradle / Ivy

The newest version!
package endpoints.algebra

/**
  * @group algebras
  */
trait Methods {

  /** HTTP Method */
  type Method

  def Get: Method

  def Post: Method

  def Put: Method

  def Delete: Method

  def Patch: Method

  def Options: Method

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy