The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package App::DuckPAN::HasApp;
our $AUTHORITY = 'cpan:DDG';
# ABSTRACT: Simple role for classes which carry an object of App::DuckPAN
$App::DuckPAN::HasApp::VERSION = '1002';
use Moo::Role;

has app => (
	is => 'rw',
	required => 1,
);

1;

__END__

=pod

=head1 NAME

App::DuckPAN::HasApp - Simple role for classes which carry an object of App::DuckPAN

=head1 VERSION

version 1002

=head1 AUTHOR

Torsten Raudssus <torsten@raudss.us> L<https://raudss.us/>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by DuckDuckGo, Inc. L<https://duckduckgo.com/>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut