require 'encore/entity/output/json'

module Encore
  module Entity
    module Output
      extend ActiveSupport::Concern

      included do
        include Encore::Entity::Output::JSON
      end
    end
  end
end