mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
18 lines
239 B
Ruby
18 lines
239 B
Ruby
require "swagger_rails/engine"
|
|
|
|
module SwaggerRails
|
|
|
|
def self.configure
|
|
yield self
|
|
end
|
|
|
|
class << self
|
|
attr_accessor :swagger_docs
|
|
|
|
#Defaults
|
|
@@swagger_docs = {
|
|
'V1' => '/swagger/v1/swagger.json'
|
|
}
|
|
end
|
|
end
|