Merge branch 'master' of git.shadowcat.co.uk:Oyster
[p5sagit/Oyster.git] / lib / Oyster / Provision / Rackspace.pm
index 82578a5..34cb8bd 100644 (file)
@@ -1,3 +1,25 @@
 package Oyster::Provision::Rackspace;
+use Moose::Role;
+
+requires 'config';
+
+sub create {
+   my $self = shift;
+
+   $self->config();
+}
+
+
+sub delete {
+   my $self = shift;
+
+   $self->config();
+}
+
+sub resize {
+   my $self = shift;
+
+   $self->config();
+}
 
 1;