mirror of
https://github.com/System-End/stickers.git
synced 2026-04-19 22:05:10 +00:00
8 lines
124 B
Ruby
8 lines
124 B
Ruby
# frozen_string_literal: true
|
|
|
|
class App < Grape::API
|
|
format :json
|
|
mount AirtableData
|
|
mount Auth
|
|
mount Stickers
|
|
end
|