github.com/goravel/framework@v1.13.9/contracts/http/method.go (about)

     1  package http
     2  
     3  import (
     4  	"net/http"
     5  )
     6  
     7  const (
     8  	MethodGet     = http.MethodGet
     9  	MethodHead    = http.MethodHead
    10  	MethodPost    = http.MethodPost
    11  	MethodPut     = http.MethodPut
    12  	MethodPatch   = http.MethodPatch
    13  	MethodDelete  = http.MethodDelete
    14  	MethodConnect = http.MethodConnect
    15  	MethodOptions = http.MethodOptions
    16  	MethodTrace   = http.MethodTrace
    17  )