/usr/share/perl5/MR/IProto/NoResponse.pm is in libmr-tarantool-perl 0.0.24-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | package MR::IProto::NoResponse;
=head1 NAME
MR::IProto::NoResponse - no response
=head1 DESCRIPTION
Base class used to mark messages with no response.
=cut
use Mouse;
extends 'MR::IProto::Response';
has '+data' => (
isa => 'Undef',
);
no Mouse;
__PACKAGE__->meta->make_immutable();
1;
|