beginnings of FS lib
[scpubgit/DKit.git] / lib / DX / Lib / FS / Fact / PathStatus.pm
CommitLineData
4d2ad771 1package DX::Lib::FS::Fact::PathStatus;
2
3use Moo;
4
5with 'DX::Role::Fact';
6
7has path => (is => 'ro', required => 1);
8has info => (is => 'ro', predicate => 1);
9
101;