new remote code
[scpubgit/Tak.git] / lib / Tak / Result.pm
index a7afb4f..2c06242 100644 (file)
@@ -5,6 +5,8 @@ use Moo;
 has type => (is => 'ro', required => 1);
 has data => (is => 'ro', required => 1);
 
+sub flatten { $_[0]->type, @{$_[0]->data} }
+
 sub get {
   my ($self) = @_;
   $self->throw unless $self->type eq 'success';