22 lines
433 B
Ruby
22 lines
433 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module V2
|
|
module Public
|
|
class Mount < Grape::API
|
|
|
|
before { set_ets_context! }
|
|
|
|
mount Public::Currencies
|
|
mount Public::Markets
|
|
mount Public::MemberLevels
|
|
mount Public::Tools
|
|
mount Public::TradingFees
|
|
mount Public::Webhooks
|
|
mount Public::WithdrawLimits
|
|
mount Public::DepositLimits
|
|
end
|
|
end
|
|
end
|
|
end
|