package Miril::Post; use strict; use warnings; use autodie; ### ACCESSORS ### use Object::Tiny qw( id title body teaser source url author published modified topics type out_path tag_url ); ### CONSTRUCTOR ### sub new { my $class = shift; return bless { @_ }, $class; } 1;