From: Chris Nehren Date: Sat, 26 Jun 2010 01:47:46 +0000 (-0400) Subject: storage_connect is generic and needs to be in the role interface X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FEmail-Archive.git;a=commitdiff_plain;h=59570365831d2a1069c76d9025b09fd15baaff23 storage_connect is generic and needs to be in the role interface --- diff --git a/lib/Email/Archive/Storage.pm b/lib/Email/Archive/Storage.pm index 3c9a6ff..f6bbc3d 100644 --- a/lib/Email/Archive/Storage.pm +++ b/lib/Email/Archive/Storage.pm @@ -1,5 +1,5 @@ package Email::Archive::Storage; use Moose::Role; -requires qw/store retrieve search/; +requires qw/store retrieve search storage_connect/; 1;