Browse Source

Added strictures to make Perl::Critic happy

Alois Mahdal 11 years ago
parent
commit
96cbfdf71f
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      lib/SugarTrail.pm

+ 3
- 0
lib/SugarTrail.pm View File

1
 package SugarTrail;
1
 package SugarTrail;
2
 use Dancer ':syntax';
2
 use Dancer ':syntax';
3
 
3
 
4
+use strict;
5
+use warnings;
6
+
4
 use SugarTrail::Repo;
7
 use SugarTrail::Repo;
5
 use helper;
8
 use helper;
6
 
9