stickers/backend/api/app.rb
2025-12-12 12:13:00 -05:00

11 lines
158 B
Ruby

# frozen_string_literal: true
class App < Grape::API
format :json
helpers SessionHelpers
mount Auth
mount Stickers
mount Shop
mount Designs
end