aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LXRng/Index.pm
blob: e0d579425fd5eb7f21d66594d74983499c4dac35 (plain)
1
2
3
4
5
6
7
8
9
10
11
package LXRng::Index;

use strict;

sub transaction(&@) {
    my ($code, $index) = @_;

    $index->transaction($code);
}

1;