mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
18 lines
309 B
Ruby
18 lines
309 B
Ruby
require 'ostruct'
|
|
|
|
module Rswag
|
|
module Ui
|
|
class Configuration
|
|
attr_reader :swagger_endpoints
|
|
|
|
def initialize
|
|
@swagger_endpoints = []
|
|
end
|
|
|
|
def swagger_endpoint(path, title)
|
|
@swagger_endpoints << OpenStruct.new(path: path, title: title)
|
|
end
|
|
end
|
|
end
|
|
end
|