forked from loafle/openapi-generator-original
* [haskell-http-client] handle */* mimetype correctly * [haskell-http-client] generate separate api modules, for each child api * [haskell-http-client] add cliOption "allowNonUniqueOperationIds" When cli option "allowNonUniqueOperationIds" is true, allows *different* API modules to contain the same operationId, and then each API must be imported qualified.
32 lines
890 B
Haskell
32 lines
890 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 spec version: 2.0
|
|
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 |