forked from loafle/openapi-generator-original
12 lines
234 B
Plaintext
12 lines
234 B
Plaintext
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
|
|
|
|
{{#apis}}
|
|
require './lib/{{className}}.rb'
|
|
{{/apis}} |