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,6 +1,9 @@
1 1
 package SugarTrail;
2 2
 use Dancer ':syntax';
3 3
 
4
+use strict;
5
+use warnings;
6
+
4 7
 use SugarTrail::Repo;
5 8
 use helper;
6 9