Initial commit

This commit is contained in:
Yaser
2026-08-13 19:50:53 +03:30
commit 38084458fe
879 changed files with 95198 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# 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