summaryrefslogtreecommitdiff
path: root/lib/api/something.rb
blob: 6cf9126c861dc54f00f9c8d3453151e469de06c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module API
  class Something < Grape::API
    resource :something do
      desc 'Delete something'
      params do

      end
      delete do
        status 204
      end
    end
  end
end