Shovelling PK::Auto stuff where it belongs..
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / UUIDMaker.pm
CommitLineData
947acfd9 1package DBIx::Class::UUIDMaker;
2
3sub new {
4 return bless {}, shift;
5};
6
7sub as_string {
8 return undef;
9};
10
111;