johnbeynon/stash-api

View on GitHub
lib/endpoints/root.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Endpoints
  class Root < Base
    get "/" do
      "hello."
    end
  end
end