Skip to content

Instantly share code, notes, and snippets.

View jjn1056's full-sized avatar

John Napiorkowski jjn1056

View GitHub Profile
anonymous
anonymous / gist:4476006
Created January 7, 2013 15:52
sub foo {
my ( $self, $c, @args ) = @_;
$c->model('Bar')->do_something(
@args,
{ on_error => sub { $c->forward('error') },
on_sucess => sub { $c->forward('do_something') }
}
);
}