mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
10 lines
182 B
Ruby
10 lines
182 B
Ruby
require './lib/swaggering'
|
|
|
|
# only need to extend if you want special configuration!
|
|
class MyApp < Swaggering
|
|
self.configure do |config|
|
|
config.api_version = '0.2'
|
|
end
|
|
end
|
|
|