Skip to content

Instantly share code, notes, and snippets.

@nothingmuch
Created May 7, 2009 12:22
Show Gist options
  • Select an option

  • Save nothingmuch/108072 to your computer and use it in GitHub Desktop.

Select an option

Save nothingmuch/108072 to your computer and use it in GitHub Desktop.
package Kitten::Friend::Model::KiokuDB;
use Moose;
extends qw(KiokuX::Model);
sub insert_kitten {
my ( $self, $kitten ) = @_;
my $id = $self->txn_do(sub {
$self->store($kitten);
});
return $id;
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment