module Paginatable
extend ActiveSupport::Concern
included do
before_action :set_pagination_params, only: [:index]
end
module Posts
class CreateService
def initialize(author:, params:)
@author = author
@params = params
end