use strict;
package E;
# ABSTRACT: Fake dist stub
use Moose;
use File::ShareDir qw( dist_file );
use Path::Tiny qw( path );
our $content = path( dist_file( 'E', 'example.txt' ) )->slurp;
1;