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