summaryrefslogtreecommitdiff
path: root/lib/DeWeave/Global.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DeWeave/Global.pm')
-rw-r--r--lib/DeWeave/Global.pm19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/DeWeave/Global.pm b/lib/DeWeave/Global.pm
new file mode 100644
index 0000000..9e36bad
--- /dev/null
+++ b/lib/DeWeave/Global.pm
@@ -0,0 +1,19 @@
+package DeWeave::Global;
+use Moose;
+use namespace::autoclean;
+use MooseX::Types::Moose qw(Int Str Num);
+
+extends 'DeWeave::WBO';
+
+has storageVersion => (
+ isa => Num,
+ required => 1,
+ is => 'ro',
+);
+
+has syncID => (
+ isa => Str,
+ required => 1,
+ is => 'ro',
+);
+