forked from loafle/openapi-generator-original
10 lines
184 B
Ruby
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
|
|
|