rakvium/blog

View on GitHub
app/controllers/api/v1/resources/ping.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
 
module API
module V1
module Resources
class Ping < Base
namespace :ping do
desc 'Check API state'
 
get do
{ result: 'pong' }
end
end
end
end
end
end