11 lines
186 B
Ruby
11 lines
186 B
Ruby
module Api
|
|
module V1
|
|
module Gateway
|
|
class BaseController < ApplicationController
|
|
include ApiAuthenticatable
|
|
include RateLimitable
|
|
end
|
|
end
|
|
end
|
|
end
|