mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-12-02 02:33:03 +01:00
20 lines
252 B
Perl
20 lines
252 B
Perl
package Redis;
|
|
|
|
# Fake Redis class >= 2.00: two-parameter auth is supported
|
|
|
|
$INC{'Redis.pm'}="fake.pm";
|
|
|
|
$Redis::VERSION = '2.000';
|
|
|
|
sub new
|
|
{
|
|
my ($class, %options) = @_;
|
|
bless ({}, $class);
|
|
}
|
|
|
|
sub info { }
|
|
sub auth($$) { }
|
|
sub quit() { }
|
|
|
|
1;
|