Initial commit
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon / Judge / Absolute.pm
CommitLineData
5c5cd38a
MG
1package Gruntmaster::Daemon::Judge::Absolute;
2
3use 5.014000;
4use strict;
5use warnings;
6
7use Gruntmaster::Daemon::Constants qw/AC/;
8
9our $VERSION = '0.001';
10
11##################################################
12
13sub judge{
14 $_ = pop;
15 ref $_ ? (result => $_->[0], result_text => $_->[1]) : (result => AC, result_text => 'Accepted')
16}
17
181;
19__END__
This page took 0.009655 seconds and 4 git commands to generate.