mirror of
https://github.com/ruby/ruby.git
synced 2025-08-26 06:25:31 +02:00
9 lines
175 B
Ruby
9 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "endpoint_fallback"
|
|
|
|
class EndpointMarshalFail < EndpointFallback
|
|
get "/api/v1/dependencies" do
|
|
"f0283y01hasf"
|
|
end
|
|
end
|