mirror of
https://github.com/System-End/stickers.git
synced 2026-04-19 19:45:14 +00:00
11 lines
158 B
Ruby
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
|