Files
Dalan/app/api/v2/public/base.rb
2026-08-13 19:56:46 +03:30

16 lines
233 B
Ruby

# frozen_string_literal: true
module API
module V2
module Public
class Base < Grape::API
helpers API::V2::Identity::Utils
do_not_route_options!
mount Public::General
end
end
end
end