aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/DB.pm
blob: cee66b434dd1c135d0b126a75b3efe07065d7c52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package FixMyStreet::DB;

use strict;
use warnings;
use FixMyStreet::DB::Schema;

my $schema;

sub schema { $schema ||= FixMyStreet::DB::Schema->clone }

sub resultset { shift->schema->resultset(@_) }

1;