openapi-generator/samples/server/petstore/sinatra/my_app.rb
2015-07-13 17:43:18 +08:00

10 lines
184 B
Ruby

require './lib/swaggering'
# only need to extend if you want special configuration!
class MyApp < Swaggering
self.configure do |config|
config.api_version = '1.0.0'
end
end