Initial commit
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon / Constants.pm
CommitLineData
5c5cd38a
MG
1package Gruntmaster::Daemon::Constants;
2
3use 5.014000;
4use strict;
5use warnings;
6use parent qw/Exporter/;
7
8our $VERSION = '0.001';
9
10use constant +{
11 # Accepted
12 AC => 0,
13
14 # Internal server error
15 ERR => -1,
16
17 # All other errors
18 WA => 1,
19 NZX => 2,
20 TLE => 3,
21 OLE => 4,
22 DIED => 5,
23 REJ => 10,
24};
25
26our @EXPORT_OK = qw/AC ERR WA NZX TLE OLE DIED REJ/;
This page took 0.009478 seconds and 4 git commands to generate.