mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-23 14:27:21 +00:00
17 lines
216 B
Ruby
17 lines
216 B
Ruby
require "swagger_rails/engine"
|
|
|
|
module SwaggerRails
|
|
|
|
def self.configure
|
|
yield self
|
|
end
|
|
|
|
class << self
|
|
attr_accessor :swagger_docs
|
|
|
|
@@swagger_docs = {
|
|
'V1' => 'v1/swagger.json'
|
|
}
|
|
end
|
|
end
|