github.com/kaisawind/go-swagger@v0.19.0/fixtures/goparsing/petstore/doc.go (about)

     1  // Copyright 2015 go-swagger maintainers
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //    http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  // Package petstore Petstore API.
    16  //
    17  // the purpose of this application is to provide an application
    18  // that is using plain go code to define an API
    19  //
    20  // This should demonstrate all the possible comment annotations
    21  // that are available to turn go code into a fully compliant swagger 2.0 spec
    22  //
    23  // Terms Of Service:
    24  //
    25  // there are no TOS at this moment, use at your own risk we take no responsibility
    26  //
    27  //     Schemes: http, https
    28  //     Host: localhost
    29  //     BasePath: /v2
    30  //     Version: 0.0.1
    31  //     License: MIT http://opensource.org/licenses/MIT
    32  //     Contact: John Doe<john.doe@example.com> http://john.doe.com
    33  //
    34  //     Consumes:
    35  //     - application/json
    36  //
    37  //     Produces:
    38  //     - application/json
    39  //
    40  // swagger:meta
    41  package petstore
    42  
    43  // APIVersion shows this API's current version
    44  var APIVersion string