cirandas.net

ref: master

plugins/stores_app/lib/stores_app_plugin/api.rb


1
2
3
4
5
6
7
8
9
module StoresAppPlugin
  class API < Grape::API

    get '/hello' do
      present 'teste'
    end

  end
end