mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-23 06:16:42 +00:00
17 lines
268 B
Ruby
17 lines
268 B
Ruby
require 'open_api/rswag/ui/configuration'
|
|
require 'open_api/rswag/ui/engine'
|
|
|
|
module OpenApi
|
|
module Rswag
|
|
module Ui
|
|
def self.configure
|
|
yield(config)
|
|
end
|
|
|
|
def self.config
|
|
@config ||= Configuration.new
|
|
end
|
|
end
|
|
end
|
|
end
|