summaryrefslogtreecommitdiffstats
path: root/lib/Spreadsheet/Template/Processor/Identity.pm
blob: 06f4d7d79867b3f5205afc8647239211b6063032 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package Spreadsheet::Template::Processor::Identity;
use Moose;
# ABSTRACT: render a template file with no processing at all

does 'Spreadsheet::Template::Processor';

sub process {
    my $self = shift;
    my ($contents, $vars) = @_
    return $contents;
}

__PACKAGE__->meta->make_immutable;
no Moose;

1;