refactor the hardcoded attribute stuff in as_dot
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / Model / Directory.pm
1 package stemmaweb::Model::Directory;
2 use strict;
3 use warnings;
4 use Moose;
5 use Text::Tradition::Directory;
6
7 extends 'Catalyst::Model::KiokuDB';
8
9 has '+model_class' => ( default => 'Text::Tradition::Directory' );
10
11 1;