The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
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;