beginnings of FS lib
[scpubgit/DKit.git] / lib / DX / Lib / FS / Fact / PathStatus.pm
diff --git a/lib/DX/Lib/FS/Fact/PathStatus.pm b/lib/DX/Lib/FS/Fact/PathStatus.pm
new file mode 100644 (file)
index 0000000..e234224
--- /dev/null
@@ -0,0 +1,10 @@
+package DX::Lib::FS::Fact::PathStatus;
+
+use Moo;
+
+with 'DX::Role::Fact';
+
+has path => (is => 'ro', required => 1);
+has info => (is => 'ro', predicate => 1);
+
+1;