From: Marius Gavrilescu Date: Thu, 18 Jun 2015 17:08:11 +0000 (+0300) Subject: Set @EXPORT_OK to the value of @EXPORT X-Git-Tag: 5999.000_014~13 X-Git-Url: http://git.ieval.ro/?p=gruntmaster-data.git;a=commitdiff_plain;h=6dfc28648feaaab4443f5947cec7334dcb13ea22 Set @EXPORT_OK to the value of @EXPORT --- diff --git a/lib/Gruntmaster/Data.pm b/lib/Gruntmaster/Data.pm index bcc0085..9613584 100644 --- a/lib/Gruntmaster/Data.pm +++ b/lib/Gruntmaster/Data.pm @@ -5,6 +5,7 @@ use warnings; use parent qw/Exporter/; our $VERSION = '5999.000_013'; our @EXPORT = qw/dbinit purge db user_list user_entry problem_list problem_entry contest_list contest_entry contest_has_problem job_list job_entry create_job standings update_status rerun_job take_job finish_job/; ## no critic (ProhibitAutomaticExportation) +our @EXPORT_OK = @EXPORT; use JSON::MaybeXS qw/decode_json/; use HTTP::Tiny;