The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Logfile::EPrints::Filter - base class for filters

SYNOPSIS

A minimal filter that removes all abstract requests:

        package Logfile::EPrints::Filter::Custom;

        our @ISA = qw( Logfile::EPrints::Filter );

        sub abstract {}

        1;