initial version with mediawiki produce/parse, three reports, missing update-merger
[scpubgit/System-Introspector-Report.git] / lib / System / Introspector / Report / Publish / MediaWiki / Page.pm
CommitLineData
499ebcdd 1package System::Introspector::Report::Publish::MediaWiki::Page;
2use Moo;
3
4has timestamp => (is => 'ro', required => 1);
5has content => (is => 'ro', required => 1);
6
7sub update {
8 my ($self, $update_stream) = @_;
9}
10
111;