Skip to content

Instantly share code, notes, and snippets.

View delonnewman's full-sized avatar

Delon R. Newman delonnewman

View GitHub Profile
package Domestic::Member;
use Moose;
use Moose::Util::TypeConstraints;
use DateTime ();
use Domestic::DB;
subtype 'Date'
=> as 'DateTime'
=> where { $_->isa('DateTime') };