mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 05:53:14 -08:00
12 lines
256 B
Ruby
12 lines
256 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Redis
|
|
module NamespaceExtensions
|
|
def exists?(...)
|
|
call_with_namespace('exists?', ...)
|
|
end
|
|
end
|
|
end
|
|
|
|
Redis::Namespace::COMMANDS['exists?'] = [:first]
|
|
Redis::Namespace.prepend(Redis::NamespaceExtensions)
|