Files
MySMSAPio/app/controllers/api/v1/gateway/base_controller.rb
2025-10-22 17:22:17 +08:00

11 lines
186 B
Ruby

module Api
module V1
module Gateway
class BaseController < ApplicationController
include ApiAuthenticatable
include RateLimitable
end
end
end
end