]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole/Application.pm
+ Use HTTP::Headers for input/output headers. Add appropriate unit tests.
[maypole.git] / lib / Maypole / Application.pm
index 584b0e4e2f40790ee1d5fd81e22cbb49ba28def6..c10221a8784bbf36be6cae136b523cd1f81ec23f 100644 (file)
@@ -4,8 +4,10 @@ use strict;
 use warnings;
 use UNIVERSAL::require;
 use Maypole;
+use Maypole::Config;
 
 our @ISA;
+our $VERSION = '2.05';
 
 sub import {
     my ( $self, @plugins ) = @_;
@@ -30,6 +32,8 @@ sub import {
             }
         }
     }
+
+    $caller->config(Maypole::Config->new);
     $caller->setup() if $autosetup;
 }