mastodon/app/models/concerns/redisable.rb

12 lines
132 B
Ruby
Raw Normal View History

2019-02-24 01:55:42 +01:00
# frozen_string_literal: true
module Redisable
extend ActiveSupport::Concern
private
def redis
Redis.current
end
end