This file is indexed.

/usr/share/perl5/Mojolicious/Plugin.pm is in libmojolicious-perl 2.98+dfsg-2.

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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package Mojolicious::Plugin;
use Mojo::Base -base;

use Carp 'croak';

# "This is Fry's decision.
#  And he made it wrong, so it's time for us to interfere in his life."
sub register { croak 'Method "register" not implemented by subclass' }

1;

=head1 NAME

Mojolicious::Plugin - Plugin base class

=head1 SYNOPSIS

  use Mojo::Base 'Mojolicious::Plugin';

=head1 DESCRIPTION

L<Mojolicious::Plugin> is an abstract base class for L<Mojolicious> plugins.

=head1 METHODS

L<Mojolicious::Plugin> inherits all methods from L<Mojo::Base> and implements
the following new ones.

=head2 C<register>

  $plugin->register;

This method will be called by L<Mojolicious::Plugins> at startup time. Meant
to be overloaded in a subclass.

=head1 SEE ALSO

L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.

=cut