forked from loafle/openapi-generator-original
* [haskell-http-client] fix codegen issues * ensure datatypeWithEnum is set on codegenParameter when is enum * [haskell-http-client] fix isAlias + arrayModelType missing "datatype" * [haskell-http-client] param.isListContainer is sometimes false for list types * [haskell-http-client] gen MimeNoContent instances automatically * [haskell-http-client] fix example-app and integration tests * [haskell-http-client] update docs
32 lines
887 B
Haskell
32 lines
887 B
Haskell
{-
|
|
Swagger Petstore
|
|
|
|
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
|
|
|
OpenAPI Version: 3.0.1
|
|
Swagger Petstore API version: 1.0.0
|
|
Contact: apiteam@swagger.io
|
|
Generated by Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
-}
|
|
|
|
{-|
|
|
Module : SwaggerPetstore
|
|
-}
|
|
|
|
module SwaggerPetstore
|
|
( module SwaggerPetstore.API
|
|
, module SwaggerPetstore.Client
|
|
, module SwaggerPetstore.Core
|
|
, module SwaggerPetstore.Logging
|
|
, module SwaggerPetstore.MimeTypes
|
|
, module SwaggerPetstore.Model
|
|
, module SwaggerPetstore.ModelLens
|
|
) where
|
|
|
|
import SwaggerPetstore.API
|
|
import SwaggerPetstore.Client
|
|
import SwaggerPetstore.Core
|
|
import SwaggerPetstore.Logging
|
|
import SwaggerPetstore.MimeTypes
|
|
import SwaggerPetstore.Model
|
|
import SwaggerPetstore.ModelLens |