add ca service

This commit is contained in:
Artur Gurgul 2025-08-13 07:06:53 +02:00
parent ca5d4c4b72
commit 8bbf7d31a5
10 changed files with 87 additions and 3 deletions

12
bin/services/ca/app.rb Normal file
View file

@ -0,0 +1,12 @@
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