mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-31 05:27:50 -05:00
9 lines
213 B
Ruby
9 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
Jsonapi::Swagger.config do |config|
|
|
config.use_rswag = false
|
|
config.version = '2.0'
|
|
config.info = { title: 'API V1', version: 'V1' }
|
|
config.file_path = 'v1/swagger.json'
|
|
end
|