12 lines
195 B
Ruby
12 lines
195 B
Ruby
require 'travis/api/app'
|
|
|
|
class Travis::Api::App
|
|
class Endpoint
|
|
class Branches < Endpoint
|
|
get '/' do
|
|
respond_with all(params).run, type: :branches
|
|
end
|
|
end
|
|
end
|
|
end
|