mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 03:18:53 +00:00
8e4f9fdc7c
And fix the deserialization of empty "object" property
53 lines
1.4 KiB
Ruby
53 lines
1.4 KiB
Ruby
=begin
|
|
Swagger Petstore
|
|
|
|
This is a sample server Petstore server. You can find out more about Swagger at <a href=\"http://swagger.io\">http://swagger.io</a> or on irc.freenode.net, #swagger. For this sample, you can use the api key \"special-key\" to test the authorization filters
|
|
|
|
OpenAPI spec version: 1.0.0
|
|
Contact: apiteam@swagger.io
|
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
|
|
License: Apache 2.0
|
|
http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
Terms of Service: http://swagger.io/terms/
|
|
|
|
=end
|
|
|
|
# Common files
|
|
require 'petstore/api_client'
|
|
require 'petstore/api_error'
|
|
require 'petstore/version'
|
|
require 'petstore/configuration'
|
|
|
|
# Models
|
|
require 'petstore/models/order'
|
|
require 'petstore/models/user'
|
|
require 'petstore/models/category'
|
|
require 'petstore/models/inline_response_200'
|
|
require 'petstore/models/tag'
|
|
require 'petstore/models/pet'
|
|
|
|
# APIs
|
|
require 'petstore/api/user_api'
|
|
require 'petstore/api/store_api'
|
|
require 'petstore/api/pet_api'
|
|
|
|
module Petstore
|
|
class << self
|
|
# Customize default settings for the SDK using block.
|
|
# Petstore.configure do |config|
|
|
# config.username = "xxx"
|
|
# config.password = "xxx"
|
|
# end
|
|
# If no block given, return the default Configuration object.
|
|
def configure
|
|
if block_given?
|
|
yield(Configuration.default)
|
|
else
|
|
Configuration.default
|
|
end
|
|
end
|
|
end
|
|
end
|