environment/bin/services/ca/app.rb
2025-08-13 07:06:53 +02:00

12 lines
No EOL
194 B
Ruby

require "roda"
class App < Roda
# automatically sets application/json and encodes Ruby objects
plugin :json
route do |r|
r.get "hello" do
{ message: "world" }
end
end
end