github.com/aldelo/common@v1.5.1/wrapper/gin/ginhttpmethod/ginhttpmethod.go (about)

     1  package ginhttpmethod
     2  
     3  /*
     4   * Copyright 2020-2023 Aldelo, LP
     5   *
     6   * Licensed under the Apache License, Version 2.0 (the "License");
     7   * you may not use this file except in compliance with the License.
     8   * You may obtain a copy of the License at
     9   *
    10   *     http://www.apache.org/licenses/LICENSE-2.0
    11   *
    12   * Unless required by applicable law or agreed to in writing, software
    13   * distributed under the License is distributed on an "AS IS" BASIS,
    14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    15   * See the License for the specific language governing permissions and
    16   * limitations under the License.
    17   */
    18  
    19  // go:generate gen-enumer -type GinHttpMethod
    20  
    21  type GinHttpMethod int
    22  
    23  const (
    24  	UNKNOWN GinHttpMethod = 0
    25  	GET     GinHttpMethod = 1
    26  	POST    GinHttpMethod = 2
    27  	PUT     GinHttpMethod = 3
    28  	DELETE  GinHttpMethod = 4
    29  )
    30  
    31  const (
    32  	_GinHttpMethodKey_0 = "UNKNOWN"
    33  	_GinHttpMethodKey_1 = "GET"
    34  	_GinHttpMethodKey_2 = "POST"
    35  	_GinHttpMethodKey_3 = "PUT"
    36  	_GinHttpMethodKey_4 = "DELETE"
    37  )
    38  
    39  const (
    40  	_GinHttpMethodCaption_0 = "UNKNOWN"
    41  	_GinHttpMethodCaption_1 = "GET"
    42  	_GinHttpMethodCaption_2 = "POST"
    43  	_GinHttpMethodCaption_3 = "PUT"
    44  	_GinHttpMethodCaption_4 = "DELETE"
    45  )
    46  
    47  const (
    48  	_GinHttpMethodDescription_0 = "UNKNOWN"
    49  	_GinHttpMethodDescription_1 = "GET"
    50  	_GinHttpMethodDescription_2 = "POST"
    51  	_GinHttpMethodDescription_3 = "PUT"
    52  	_GinHttpMethodDescription_4 = "DELETE"
    53  )