web.rb 🔗
@@ -219,6 +219,10 @@ class Web < Roda
end
route do |r|
+ r.get "healthcheck" do
+ "OK"
+ end
+
r.on "inbound" do
r.on "calls" do
r.post "status" do
Stephen Paul Weber created
web.rb | 4 ++++
1 file changed, 4 insertions(+)
@@ -219,6 +219,10 @@ class Web < Roda
end
route do |r|
+ r.get "healthcheck" do
+ "OK"
+ end
+
r.on "inbound" do
r.on "calls" do
r.post "status" do